snippets/js/Simple Node HTTP Server
2024-10-03 01:47:38 +02:00

1 line
139 B
Plaintext

try{require('http').createServer((req,res)=>res.end(require('fs').readFileSync(__dirname+req.url))).listen(3000)}catch(e){console.error(e)}