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 logging middlewares built on bunyan and rotatelog-stream
$ npm install bunlogger --save
app.use(logger.connect())
will populate the req.log
, which is actually a child of the bunyan logger, simply req.log.info('...')
will share the same cor_id
in the access log
and error log
. cor_id is exposed on req.cor_id
;
logging req.log.fatal()
, req.log.error()
into error log file. If error is sent to next(err)
and req.log['fatal|error']
not got called, middleware app.use(logger.onError())
will log this error by error.status
automatically. err.status == 4xx is warn level, err.status == 5xx is error level.
elapsed
show the time spent in this req
.
Integrate with rotatelog-stream for rotating logs to files.
See logging on the console in developing stage.
const express = require('express');
const AppLogger = require('bunlogger');
const logDir = require('path').join(__dirname, 'log');
var app = express();
app.log = new AppLogger({dev: true, logDir});
populate req.log
and log all accesses
app.use(app.log.connect());
Catch express next(err) for logging, but skip if req.log got called above warn level.
app.use(app.log.onError());
log
directory created and bunlogger.log
, bunlogger-error.log
created.
Finally, render req.cor_id
in the final error handler, so the customer can contact you with cor_id
for help.
logger is using rotatelog-stream for rotating logs.
const Logger = require('..').Logger;
const join = require('path').join;
var log = new Logger({logDir: join(__dirname, 'log')});
log.info('hi info');
log.warn('hi warn');
log.error('hi error');
A handy tool to replace console.error(err).
const printErr = require('bunlogger').printErr;
try {
new NotExist();
} catch (er) {
printErr(er)
}
$ DEBUG=* node bin/www
process.stdout
for development, so we can see how logging file looks like in console.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.