const http = require('http'); const server = http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World mega cracks dice que funciona sinm paja\n'); }); const PORT = 3000; server.listen(PORT, () => { console.log(`Servidor corriendo en http://localhost:${PORT}`); });