Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
express middleware powered by bunyan
$ npm install bunlogger --save
error log
and access log
share the same cor_id
, so you can associate the error log to the access log happened at the same time.req.log
is actually the bunyan logger, simply req.log.info('...')
will share the same cor_id
in the access log
and error log
.elapsed
show the time spent in this req
.###app.js
const express = require('express');
const config = require('config');
const Bunlog = require('bunlogger');
// set up app
//===============
var app = express();
var logger = Bunlog(config.bunlog);
// as a middleware
app.use(logger.connect());
// as an error middleware
app.use(logger.error());
###config/index.js
const join = require('path').join;
const pkgname = require('../package.json').name;
const production = process.env.NODE_ENV == 'production';
// logging config
var bunlog = {name: pkgname};
if (production) bunlog.path = join(__dirname, '..', 'logs', pkgname + '.log');
exports.bunlog = bunlog;
FAQs
bunyan logger, bunyan express middleware, pretty print err for development
The npm package bunlogger receives a total of 0 weekly downloads. As such, bunlogger popularity was classified as not popular.
We found that bunlogger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.