hello world

node v8.17.0
version: 2.0.0
endpointsharetweet
const express = require('express') const app = express() app.get('/', (req, res) => res.send('Hello World!')) app.listen(3000, () => console.log('Example app listening on port 3000!'))
Created from: http://expressjs.com/en/starter/hello-world.html
Loading…

no comments

    sign in to comment