probando workflow
Some checks failed
build-and-push / build (push) Failing after 5s

This commit is contained in:
2025-05-02 15:45:56 -06:00
parent 3820ad8f4e
commit ededdf9ae8
3 changed files with 61 additions and 0 deletions

11
index.js Normal file
View File

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