greeter

node v6.17.1
version: 1.0.0
endpointsharetweet
const express = require('express') const app = express() app.get('/', function (req, res) { res.send(JSON.stringify(req.body)) // res.send('Hello World!') }) app.listen(3000, function () { 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