Created
September 18, 2018 10:58
-
-
Save cray0000/a574e0d95cab1ebee131284d272ecbd3 to your computer and use it in GitHub Desktop.
Simplest one line "hello world" Node.js server running on port 3000
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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