Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. const express = require('express');
  2. const app = express();
  3.  
  4. app.get('/', function(req, res) {
  5. res.send('Hello World!');
  6. });
  7.  
  8. app.listen(3000, function() {
  9. console.log('Example app listening on port 3000!');
  10. });
  11.  
  12. // run node app.js or node app in console
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement