snippets/js/Simple Node HTTP Server

1 line
139 B
Plaintext
Raw Permalink Normal View History

2024-10-02 23:47:38 +00:00
try{require('http').createServer((req,res)=>res.end(require('fs').readFileSync(__dirname+req.url))).listen(3000)}catch(e){console.error(e)}