### Install Pino using NPM Source: https://getpino.io/ Use this command to install the Pino logger package via NPM. ```bash $ npm install pino ``` -------------------------------- ### Install Pino using YARN Source: https://getpino.io/ Use this command to install the Pino logger package via YARN. ```bash $ yarn add pino ``` -------------------------------- ### Pino Log Output Example Source: https://getpino.io/ Example of the JSON output produced by Pino for info level messages. ```json {"level":30,"time":1531171074631,"msg":"hello world","pid":657,"hostname":"Davids-MBP-3.fritz.box"} {"level":30,"time":1531171082399,"msg":"hello child!","pid":657,"hostname":"Davids-MBP-3.fritz.box","a":"property"} ``` -------------------------------- ### Basic Pino Usage Source: https://getpino.io/ Initialize Pino and log messages. Child loggers can be created for scoped logging. ```javascript const logger = require('pino')() logger.info('hello world') const child = logger.child({ a: 'property' }) child.info('hello child!') ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.