Guest User

Untitled

a guest
Jul 22nd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. const express = require('express');
  2.  
  3. const app = express();
  4.  
  5. app.listen(3000, () => {
  6. console.log('listening on port 3000');
  7. });
  8.  
  9. app.get('/', (req, res) => {
  10. res.status(200).send('<h1>hi</h1>');
  11. });
Add Comment
Please, Sign In to add comment