🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

triple-beam

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

triple-beam

Definitions of levels for logging purposes & shareable Symbol constants.

1.4.1
latest
Source
npm
Version published
Weekly downloads
12M
-2.84%
Maintainers
2
Weekly downloads
 
Created

What is triple-beam?

The triple-beam npm package is a module that provides constants for the Winston logging library, which is widely used in Node.js applications for logging purposes. It includes log levels, colors, and configuration utilities that can be used to customize and format log messages.

What are triple-beam's main functionalities?

Log Levels

Triple-beam provides a set of predefined log levels that can be used to categorize log messages by their severity. This allows for filtering and controlling the flow of log output.

{"levels": {"info": 0, "warn": 1, "error": 2, "verbose": 3}}

Configurable Log Properties

It allows for the configuration of log properties using symbols, which ensures that log metadata is not overwritten when multiple transports are used in Winston.

{"MESSAGE": Symbol.for('message'), "LEVEL": Symbol.for('level')}

Custom Log Formats

Triple-beam provides constants that can be used to create custom log formats in Winston, allowing developers to define how log messages should be structured and presented.

const { format } = require('winston');
const { SPLAT, LEVEL, MESSAGE } = require('triple-beam');

const customFormat = format((info, opts) => {
  info[SPLAT] = info[SPLAT] || [];
  info[LEVEL] = info[LEVEL] || 'info';
  info[MESSAGE] = `Custom format: ${info.message}`;
  return info;
});

Other packages similar to triple-beam

Keywords

winstonjs

FAQs

Package last updated on 10 Jul 2023

Did you know?

Socket

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.

Install

Related posts