Guest User

Untitled

a guest
May 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. const express = require('express');
  2. const app = express();
  3.  
  4. const PORT = 8081;
  5.  
  6. app.listen(PORT, function(){
  7. console.log(`Server starting on port ${PORT}`)
  8. });
Add Comment
Please, Sign In to add comment