Skip to content

Instantly share code, notes, and snippets.

@paulja
Created November 17, 2016 17:31
Show Gist options
  • Save paulja/3940f609ed8d1e2a958651b881de0f68 to your computer and use it in GitHub Desktop.
Save paulja/3940f609ed8d1e2a958651b881de0f68 to your computer and use it in GitHub Desktop.
// Hello World Web Service
var http = require('http')
http.createServer((req, res) => {
res.writeHead(200, { "Content-Type": "text/plain" })
res.write("Hello World")
res.end()
}).listen(3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment