Last active
March 17, 2020 09:55
-
-
Save hareeqi/fc957048f1a0e7edd97248a0e15ebcbf to your computer and use it in GitHub Desktop.
This file contains 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
const http = require('http'); | |
const server = http.createServer((req, res) => { | |
res.send("hello") | |
res.end(); | |
}); | |
server.listen(80); | |
console.log(`service running`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment