Files
planilla/index.js
josedario87 c6553be387
All checks were successful
build-and-push / build (push) Successful in 6s
build-and-push / deploy (push) Successful in 2s
despues de
2025-05-02 16:46:54 -06:00

12 lines
286 B
JavaScript

const http = require('http');
const server = http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('cambio bueno\n');
});
const PORT = 3000;
server.listen(PORT, () => {
console.log(`Servidor corriendo en http://localhost:${PORT}`);
});