Socket
Socket
Sign inDemoInstall

winston-configure

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

winston-configure

Declarative configuration for winston loggers.


Version published
Weekly downloads
21
increased by31.25%
Maintainers
1
Weekly downloads
 
Created
Source

winston-configure

Build status Code Climate NPM version

Declarative configuration for winston loggers.

Supports:

  • Configuring multiple loggers in one command
  • Configuring the default transports for none specific loggers
  • Using shared transports definitions

Install

npm install winston-configure

Usage

var winstonConfigure = require('winston-configure');

winstonConfigure({
	transports: {
		errorConsole: {
			type: 'Console',
			level: 'error'
		},
		debugConsole: {
			type: 'Console',
			level: 'debug'
		}
	},
	loggers: {
		default: ['errorConsole'], // a logger created and not specifically configured will get these transports
		myLogger: [], // this logger will be silent
		myLogger2: ['debugConsole', {
			type: 'File',
			level: 'error',
			filename: 'test.log'
		}] // this logger will use the shared debugConsole transport and a custom file transport definition
	}
});

var myLogger = winston.loggers.get('myLogger');

Keywords

FAQs

Package last updated on 28 Jan 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc