Skip to content

Instantly share code, notes, and snippets.

@cray0000
Created September 18, 2018 10:58
Show Gist options
  • Save cray0000/a574e0d95cab1ebee131284d272ecbd3 to your computer and use it in GitHub Desktop.
Save cray0000/a574e0d95cab1ebee131284d272ecbd3 to your computer and use it in GitHub Desktop.
Simplest one line "hello world" Node.js server running on port 3000
node -e "require('http').createServer((_, res) => res.end('hello world')).listen(3000)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment