A lightweight express middleware logger with little functionality.
Its really simple simply add captain as a middleware matee
var express = require("express");
var captain = require("captain")
var app = express();
var port = process.env.PORT || 9000;
app.use(captain);
app.listen(port, function(){
console.log("Server is running on port " + port);
});
And there ya go! all network requests will be logged meaning you have more time to scrub the poop decks...