Skip to content

Instantly share code, notes, and snippets.

@andrebaltieri
Created July 9, 2015 01:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrebaltieri/067880926b1523aca2a6 to your computer and use it in GitHub Desktop.
Save andrebaltieri/067880926b1523aca2a6 to your computer and use it in GitHub Desktop.
var app = require('express')();
var http = require('http').Server(app);
app.get('/', function(req, res){
res.send('<h1>Chat Amizade</h1>');
});
http.listen(5002, function(){
console.log('Servidor ouvindo na porta 5002');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment