initial commit

Este commit está contenido en:
ale
2024-10-03 01:47:38 +02:00
commit 72d18ac6c0
Se han modificado 25 ficheros con 596 adiciones y 0 borrados

1
js/Simple Node HTTP Server Archivo normal
Ver fichero

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