Skip to content

Instantly share code, notes, and snippets.

@kavanagh
Created January 16, 2014 00:58
Show Gist options
  • Save kavanagh/8447911 to your computer and use it in GitHub Desktop.
Save kavanagh/8447911 to your computer and use it in GitHub Desktop.
var express = require('../../');
var app = express();
app.get('/', function(req, res){
res.send('Hello World');
});
app.listen(3000);
console.log('Express started on port 3000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment