Logger for express Server
node express
npm init
npm install express --save
1 - Download and place the files in your project root folder
2 - At your app.js or main file of express project add those lines
var logger = require('./logger');
app.use(logger);
And run your server
>node app.js
Strongly recommend use nodemon as watcher server
Install Globally
> npm install -g nodemon
Then run to your project folder and activate it
> nodemon