gustiti03 / nodejs-quarta

0 stars 0 forks source link

resposta server #1

Open gustiti03 opened 1 month ago

gustiti03 commented 1 month ago

const http = require('http');

function handle(requisicao, resposta){ console.log('Alguém entrou!'); console.log(requisicao.url) resposta.end('Hello, World!'); }

const servidor = http.createServer(handle) const port = 4000

servidor.listen(port, function() { console.log('O servidor está ouvindo em: http://localhost:' + port) })