Skip to content

Instantly share code, notes, and snippets.

@hunterloftis
Created March 4, 2012 22:10
Show Gist options
  • Save hunterloftis/1975048 to your computer and use it in GitHub Desktop.
Save hunterloftis/1975048 to your computer and use it in GitHub Desktop.
simple express server
var express = require('express');
var app = express.createServer();
app.use(express.bodyParser());
app.use(app.router);
app.get('/', function(req, res) {
req.send('hello, world');
});
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment