Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
bunyan logger, bunyan express middleware, pretty print err for development
express logging middlewares built on bunyan and rotatelog-stream
$ npm install bunlogger --save
app.use(logger.connect())
middleware 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
.
req.log.fatal()
, req.log.error()
will log error into error log
file separated from access log
.
app.use(logger.onError())
middleware will skip error which was logged by req.log.fatal()
, req.log.error()
or req.log.warn()
, so no duplicated error logging. In addition, error with no status or status >= 500, will be logged in error level
. Error with status between 400~499, will be logged in warn 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 1 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.