Advertisement
sazid_iiuc

Untitled

Feb 19th, 2021
1,042
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const express = require('express');
  2. const fs = require('fs');
  3. const app = express();
  4.  
  5.  
  6. app.use(express.static(__dirname + '/public'))
  7.  
  8. const port = process.env.PORT || 3001;
  9. const server = app.listen(port);
  10. console.log('success!')
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement