Skip to content

Instantly share code, notes, and snippets.

View alsgu3rra's full-sized avatar
🌎
programador de sistemas

AlanGuerra alsgu3rra

🌎
programador de sistemas
View GitHub Profile
@alsgu3rra
alsgu3rra / index.mjs
Created April 20, 2024 01:05
Servidor Puro no NodeJS
import { createServer } from 'node:http';
const server = createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World!\n');
});
server.listen(3000, '127.0.0.1', () => {
console.log('Listening on 127.0.0.1:3000');
});