Skip to content

Instantly share code, notes, and snippets.

@chaiwa-berian
Created August 2, 2018 18:28
Show Gist options
  • Save chaiwa-berian/f3981f5c813a7aa8764c983b880a3f78 to your computer and use it in GitHub Desktop.
Save chaiwa-berian/f3981f5c813a7aa8764c983b880a3f78 to your computer and use it in GitHub Desktop.
Nodejs Server in one line of code
require('http').createServer((req,res)=>res.end("Hey!")).listen(3000,'127.0.0.1');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment