Skip to content
This repository has been archived by the owner on Oct 18, 2019. It is now read-only.

Commit

Permalink
Example app: Print port number on start
Browse files Browse the repository at this point in the history
  • Loading branch information
esamattis committed May 24, 2012
1 parent 6b72610 commit 65a9425
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/simple/app.js
Expand Up @@ -54,4 +54,6 @@ app.get("/", function(req, res){
res.render("index.jade");
});

app.listen(8001);
app.listen(8001, function(){
console.log("listening on 8001");
});

0 comments on commit 65a9425

Please sign in to comment.