Skip to content

Instantly share code, notes, and snippets.

@bnb
Created January 30, 2015 22:28
Show Gist options
  • Select an option

  • Save bnb/17e3408d117e9507ad64 to your computer and use it in GitHub Desktop.

Select an option

Save bnb/17e3408d117e9507ad64 to your computer and use it in GitHub Desktop.
Solution for Problem One of ExpressWorks that doesn't work.
var express = require('express');
var app = express();
app.get('/', function(req, res) {
res.end('Hello World!');
});
app.listen(process.argv[2]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment