Skip to content

Instantly share code, notes, and snippets.

@grabbeh
Created August 18, 2013 12:06
Show Gist options
  • Save grabbeh/6261321 to your computer and use it in GitHub Desktop.
Save grabbeh/6261321 to your computer and use it in GitHub Desktop.
Express hello world
var express = require('express')
, app = express()
app.get('/', function(req, res){
res.send('Hello World')
});
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment