Files
planilla/index.js
josedario87 5a68b3e512
All checks were successful
build-and-push / build (push) Successful in 7s
build-and-push / deploy (push) Successful in 12s
asdas
2025-05-02 16:29:47 -06:00

12 lines
325 B
JavaScript

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}`);
});