Created
March 23, 2021 05:58
-
-
Save dacoffey/f753d1e4dfd92ef8f0c7b471ef42c9a4 to your computer and use it in GitHub Desktop.
NODE: Bare Minimum Web Server
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
require('http').createServer((req,res)=>{ res.writeHead(200); res.end('HELLOWORLD'); }).listen(80,'0.0.0.0'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment