
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Chip-log provides NodeJS with structured logging which includes extended attributes
# Examples below using pino-pretty as formatter
[1611629195127] INFO (17914 on evil.lan): nested
module: "example-appserver"
function: "nestedHandler"
lineNum: 6
requestId: "10279b7c-69fe-4767-b36a-80f6b0b2266c"
payload: {
myData: "example payload"
}
[1611629195128] INFO (17914 on evil.lan): finished
module: "example-appserver"
function: "helloWorldHandler"
lineNum: 12
requestId: "10279b7c-69fe-4767-b36a-80f6b0b2266c"
Requirements
Import chip-log and call the log level with a message, a json object, or both
const log = require('chip-log');
log.info('hello world')
log.error(err.message, { error })
See example-app below, or the Chip-Log Repo on Github
Envars to configure
Minimum log level to dispatch, default: info
LOG_LEVEL=trace|debug|info|warn|error|fatal
Namespace for the async hook context, default: APP_NAMESPACE
APP_NAMESPACE=My_Application
Path to the entry directory of the application (defaults to current working directory the node process is started in)
APP_BASE=./src
Disable logging, like during tests
LOG_VOID=true
Redacting specific paths in logs
REDACT='req.body.password,req.params.password
To wrap debug messages provided from Debug, ensure Chip-Log is the first import of the entry file for your module.
requires Express v4+
Using NodeJS Async Hooks, attach a Request ID to a request. When logging in a function as part of a Express request, the requestId
will be one of the attributes on the log
In your application setup for express, when declaring middleware .use()
,
aim to add the context
middleware as close to being first as possible.
const app = require('express')()
const { context } = require('chip-log').middleware;
app.use(context())
# example output using pino-pretty
[1611629195128] INFO (17914 on evil.lan): finished
module: "example-appserver"
function: "helloWorldHandler"
lineNum: 12
requestId: "10279b7c-69fe-4767-b36a-80f6b0b2266c"
Provides details of the request and response from Express for a request. If used with Context middleware, the log will also contain the requestId
In your application setup for express, when declaring middleware .use()
,
you can place request
anywhere before routes are declared.
If using with the Context middleware, place anywhere after, before the routes
const app = require('express')()
const { context, request } = require('chip-log').middleware;
app.use(context())
app.use(request())
# example output using pino-pretty
[1612893183539] INFO (25216 on RR3D-MAC0005.lan): request completed
req: {
"id": "8c276c5d-2717-47b5-8dbf-c4d33964e057",
"method": "GET",
"url": "/favicon.ico",
"headers": {
"host": "localhost:3000",
"connection": "keep-alive",
"sec-ch-ua": "\"Google Chrome\";v=\"87\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"87\"",
"sec-ch-ua-mobile": "?0",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36",
"accept": "image/avif,image/webp,image/apng,image/*,*/*;q=0.8",
"sec-fetch-site": "same-origin",
"sec-fetch-mode": "no-cors",
"sec-fetch-dest": "image",
"referer": "http://localhost:3000/",
"accept-encoding": "gzip, deflate, br",
"accept-language": "en-US,en;q=0.9"
},
"remoteAddress": "::1",
"remotePort": 50622
}
requestId: "8c276c5d-2717-47b5-8dbf-c4d33964e057"
res: {
"statusCode": 404,
"headers": {
"x-powered-by": "Express",
"content-security-policy": "default-src 'none'",
"x-content-type-options": "nosniff",
"content-type": "text/html; charset=utf-8",
"content-length": 150
}
}
responseTime: 2
const app = require('express')()
const log = require('chip-log')
const {
context,
request,
} = log.middleware
const nestedHandler = () => {
log.info('nested')
}
const helloWorldHandler = (req, res) => {
nestedHandler()
log.info('finished', { test: 'one' })
res.send('Hello world')
}
app.use(context())
app.use(request())
app.get('/', helloWorldHandler)
app.listen(3000, () => log.info('Running'))
1.0.2 (2021-02-09)
FAQs
Structured logging with extended attributes
The npm package chip-log receives a total of 2 weekly downloads. As such, chip-log popularity was classified as not popular.
We found that chip-log 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.