A Pusher transport for winston logging library.
npm install winston
npm install winston-pusher
var winston = require('winston');
var PusherLogger = require('winston-pusher');
var log = new (winston.Logger)({
transports: [
new (PusherLoger)({
level: 'info',
pusher: {
"appId": "your-app-id",
"key": "your-app-key",
"secret": "your-app-secret",
"cluster": "eu",
"encrypted": true
}
})
]
});
Distributed under the MIT license.