Skip to content

Instantly share code, notes, and snippets.

@kidbrax
Last active April 27, 2020 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kidbrax/e9c77c143bca23d769ab to your computer and use it in GitHub Desktop.
Save kidbrax/e9c77c143bca23d769ab to your computer and use it in GitHub Desktop.
demo http server #coffee
http = require("http")
PORT = process.env.PORT or 3000
http.createServer((req, res) ->
console.log "%d request received", process.pid
res.writeHead 200,
"Content-Type": "text/plain"
res.end "Hello world!\n"
return
).listen PORT
console.log "%d listening on %d", process.pid, PORT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment