Advertisement
Guest User

Untitled

a guest
Aug 17th, 2018
126
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. app.get('/', (req, res) => {
  5. return res.send("Hello, world!");
  6. });
  7.  
  8. app.listen(3000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement