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