
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.