http://expressjs.com/en/starter/hello-world.html ``` js var server = app.listen(3000, function () { var host = server.address().address; var port = server.address().port; console.log('Example app listening at http://%s:%s', host, port); }); ``` [docs](http://expressjs.com/en/4x/api.html#app.listen) say nothing about a return value for `app.listen`, although the [code docs](https://github.com/strongloop/express/blob/master/lib/application.js#L611) do. In any event that usage is definitely not good for a hello-world example.