On Github alexssandroreis / nodejs
Analista de sistemas na Affero Lab GDG organizer E-mail: alexssandroreis@gmail.com Linkedin: Alexssandro A. Reis Twitter: @alereis
var http = require('http'); var server = http.createServer(function(request, response){ response.writeHead(200, {"Content-Type": "text/html"}); response.write("<h1>Hello World!</h1>"); response.end(); }); server.listen(3000, function() { console.log("Servidor rodando!"); })