New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

winston-config-monitor

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

winston-config-monitor

A helper to easily configure winston with monitoring.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
171
decreased by-8.56%
Maintainers
1
Weekly downloads
 
Created
Source

winston-config-monitor pipeline status

Motivation

winston is designed to be a simple and universal logging library with support for multiple transports. winston-config is designed to configure winston via json files.

winston-config-monitor offers a file watcher over the config loader.

Usage

You do have to put the winston dependency into your package.json. winston-config-monitor will not work correctly without this dependency in your package.json.

winston-config-monitor can be used like described below:

  'use strict';

  var path                 = require('path');
  var winston              = require('winston');
  var winstonConfigMonitor = require('winston-config-monitor');

  var configFile     = path.join(process.cwd(), 'winston-options.json');
  var logOptions     = require(configFile);

  global.logger      = winstonConfigMonitor.getLogger();

  logger.exitOnError = true;

  // Clear all transport
  winstonConfigMonitor.clear();

  // Load dynamically all the logger options
  for (var transportName in logOptions.loggersOptions) {
    winstonConfigMonitor.add(winston.transports[transportName], configFile, 'loggersOptions.' + transportName);
  }

  module.exports = logger;

winston-options.json should be defines as below:

{
  "loggersOptions": {
    "Console": {
      "level"    : "debug",
      "colorize" : true
    },
    "File": {
      "timestamp" : true,
      "json"      : false,
      "filename"  : "logs/app.log",
      "maxFile"   : 5,
      "maxsize"   : 10485760,
      "level"     : "info"
    }
  }
}

Installation

Installing winston-config-monitor

  npm install winston-config-monitor --save

Run Tests

All of the winston tests are written with mocha/chai/spy.

  $ npm test

Changelog

1.0.0

  • Declare a new winston as suggested in winston documentation. (Allow to stream log directly)

0.1.1

0.1.0

  • First release

Keywords

FAQs

Package last updated on 05 Jun 2018

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