Skip to content

Instantly share code, notes, and snippets.

@bobvanderlinden
Last active May 14, 2020 13:13
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 bobvanderlinden/5c9412e7d14d2ac2dd8c3a3e525ba3e1 to your computer and use it in GitHub Desktop.
Save bobvanderlinden/5c9412e7d14d2ac2dd8c3a3e525ba3e1 to your computer and use it in GitHub Desktop.
NodeJS HTTP server one-liner
node --eval 'require("http").createServer((req, res) => { res.end(); console.log(req.method, req.url, req.rawHeaders); }).listen(8080)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment