Pino

10.3.1 · active · verified Sat Apr 18

Pino is a super fast, all-natural JSON logger for Node.js. The current stable version is 10.3.1. The library is actively maintained with frequent minor releases, typically addressing bug fixes, performance improvements, and feature enhancements for its core logging and transport functionalities.

Common errors

Warnings

Install

Imports

Quickstart

Initializes a Pino logger and demonstrates basic info logging and creating a child logger with additional properties.

import pino from 'pino';

const logger = pino();

logger.info('hello world');

const child = logger.child({ a: 'property' });
child.info('hello child!');

view raw JSON →