Skip to content

Instantly share code, notes, and snippets.

@alsgu3rra
Created April 20, 2024 01:05
Show Gist options
  • Save alsgu3rra/f277e3c829fa48809081cd1daaab8a87 to your computer and use it in GitHub Desktop.
Save alsgu3rra/f277e3c829fa48809081cd1daaab8a87 to your computer and use it in GitHub Desktop.
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');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment