Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const express = require('express')
- const app = express();
- const port = 8000
- app.get('/' , (req,res) => res.send('Working!'))
- app.listen( port , () =>
- console.log(`Your app is listening a http://localhost:${port}`)
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement