
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
A logging library that combines the simplicity and convenience of debug with the power of bunyan
A logging library that combines the simplicity and convenience of debug with the power of bunyan.
Install the package via yarn
:
❯ yarn add debugnyan
or via npm
:
❯ npm install debugnyan --save
Create a logger by giving it a namespace and then call bunyan's log methods on the returned instance.
By default, similarly to debug
's behaviour, loggers do not output any content. Each logger output can be selectively activated by using the DEBUG
environment variable.
Pattern matching is based on the logger's name and it can optionally contain colons (:
) to create (sub)-components properties on the logger instance.
Consider a logger named foo:bar:biz
:
bunyan
logger with name foo
bunyan
(simple) child logger with property component
equal to bar
.const logger1 = require('debugnyan')('foo');
const logger2 = require('debugnyan')('foo:bar');
logger1.debug('net');
logger2.debug('qux');
Example output with DEBUG=foo
:
DEBUG=foo node example.js
{"name":"foo","hostname":"ruimarinho","pid":1,"level":20,"msg":"net","time":"2016-10-04T18:54:14.530Z","v":0}
{"name":"foo","hostname":"ruimarinho","pid":1,"component":"bar","level":20,"msg":"qux","time":"2016-10-04T18:54:14.531Z","v":0}
Example output with DEBUG=foo:bar
:
DEBUG=foo:bar node example.js
{"name":"foo","hostname":"ruimarinho","pid":2,"component":"bar","level":20,"msg":"qux","time":"2016-10-04T18:55:08.217Z","v":0}
The prefix
and suffix
for each component is also customizable:
const logger = require('debugnyan')('foo', {}, { suffix: 'module' });
When creating a child logger you may also override the default simple
behavior:
const logger = require('debugnyan')('foo', {}, { suffix: 'module', simple: false });
The level
bunyan option is respected if the logger output is active.
const logger = require('debugnyan')('foo', { level: 'info' });
You may also set the log level via the LOG_LEVEL
environment variable. However, the level
option will always take precedence over it.
❯ yarn test
Click Run Workflow
on the release github action.
MIT
v4.1.1 (2023-11-23)
FAQs
A logging library that combines the simplicity and convenience of debug with the power of bunyan
The npm package debugnyan receives a total of 18,233 weekly downloads. As such, debugnyan popularity was classified as popular.
We found that debugnyan demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.