Skip to content

Instantly share code, notes, and snippets.

@ericvicenti
Created June 24, 2013 19:07
Show Gist options
  • Save ericvicenti/5852588 to your computer and use it in GitHub Desktop.
Save ericvicenti/5852588 to your computer and use it in GitHub Desktop.
var express = require('express');
var app = new express();
app.get('/', function(req, res){
res.send('hello, world!')
});
app.listen('8000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment