Socket
Book a DemoInstallSign in
Socket

@node-ts/logger-winston

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@node-ts/logger-winston

A winston adapter for @node-ts/logger

latest
npmnpm
Version
0.1.1
Version published
Maintainers
2
Created
Source

@node-ts/logger-winston

A Winston implementation for logger.

Usage

Install the package and its dependenceis

npm i @node-ts/logger-winston @node-ts/logger-core

Load the modules during application startup in inversify:

import { Container } from 'inversify'
import { LoggerModule } from '@node-ts/logger-core'
import { WinstonModule } from '@node-ts/logger-winston'

// ...

const container = new Container()
container.load(new LoggerModule())
container.load(new WinstonModule())

Custom Configuration

To configure the winston logger instances, provide your own WinstonConfiguration implementation, ie:


@injectable()
export class CustomWinstonConfiguration implements WinstonConfiguration {
  getConfiguration (loggerName: string): winston.LoggerOptions {
    return {
      defaultMeta: { loggerName }
      // etc
    }
  }
}

Then to use it, rebind the WINSTON_SYMBOLS.WinstonConfiguration symbol on your application startup:

import { ContainerModule } from 'inversify'
import { CustomWinstonConfiguration } from './custom-winston-configuration'
import { WINSTON_SYMBOLS } from '@node-ts/logger-winston'

export class ApplicationModule extends ContainerModule {
  constructor () {
    super((_, __, ___, rebind) => {
      rebind(WINSTON_SYMBOLS.WinstonConfiguration).to(CustomWinstonConfiguration)
    })
  }
}

FAQs

Package last updated on 06 May 2020

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