Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const express = require('express')
- const app = express()
- app.use(express.static('bin')); // Serving ./bin
- app.get('/', function (req, res)
- {
- res.send('Hello World!')
- })
- app.listen(3000, function ()
- {
- console.log('http://localhost:3000')
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement