Aprovecha el precio especial.

Antes:$249

Currency
$209

Paga en 4 cuotas sin intereses

Paga en 4 cuotas sin intereses
Suscríbete

Termina en:

15d

01h

47m

07s

1

Servidor básico con HTTP

Mini tutorial de crear un sever básico con HTTP

const http = require('http');

const host = '127.0.0.1';
const PORT = 3000;

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('Hi, World');
});

server.listen(PORT, host, () => {});
Escribe tu comentario
+ 2