Skip to content

Instantly share code, notes, and snippets.

@HaveF
Last active December 21, 2015 22:09
Show Gist options
  • Save HaveF/6373152 to your computer and use it in GitHub Desktop.
Save HaveF/6373152 to your computer and use it in GitHub Desktop.
var express = require('express');
var app = express.createServer(express.logger());
app.get('/', function(request, response) {
response.send('Hello World!');
});
var port = process.env.PORT || 5000;
app.listen(port, function() {
console.log("Listening on " + port);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment