npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@zulus/logger

v1.0.0

Published

Wrapper around winston module

Downloads

8

Readme

logger

pipeline status coverage report

Provides wrapper around winston@3 npm module

npm i [email protected]:ZulusK/nodejs-logger.git

Structure

USAGE

const Logger = require('@dev/logger');
const config = {
  name: 'my awesome Logger',
  timestamp: true,
  levels: {
    foo: 1
  },
  colors: {
    foo: 'yellow'
  },
  transports: [
    {
      type: 'console',
      level: 'debug'
    },
    {
      type: 'file',
      level: 'debug',
      maxsize: 1024 * 1024 * 10, // 10 MB
      maxFiles: 10,
      filename: 'log.txt'
    }
  ]
};
const logger = new Logger(config);
logger.foo('Hello, %s', 'world');
logger.info("That's all, %O", { who: 'folks' });

API

constructor(config)

Creates a new Logger

  • config - configuration of Logger instance
    • [name] - name of the logger, will be used as label to each logger output, can be empty
    • [timestamps] - is timestamps enabled
    • [timesatmpsFormat] - format of timestamps, default 'HH:MM:SS DD/MM/YY'
    • [levels] - custom logging levels, see example
    • [colors] - custom colors of logger levels, see example
    • transports - an array of transports to be used for logging, must be not empty
      • type - type of transports, one of the next values console, file
      • [colorize] - enable colors in output
      • [silent] - make transport silent (disable it)
      • level - required, which log level should handle this logger, see default levels Next options are used only in file-type logger.
      • filename - required in file-type logger, directory + filename of destination log file
      • [maxsize] - max file size, if size of log file will be greater than this value, winston will create a new one
      • [maxFiles] - max number of log files, old files will be replaced by new files

patchLoggers()

Replaces all global console methods with methods of winston. Eq. call console.info() are the same to call logger.info(). Original methods are available in property console._native. So you don't need to import logger in each your file. You can use global defined object console

Contributing

To start contributing do

git clone [email protected]:ZulusK/nodejs-logger.git
git checkout develop
git checkout -b <your-branch-name>

The project is developed in accordance with the GitFlow methodology.

What it means
  1. All work you should do in your own local branch (naming is important, look below), then make pull request to develop branch
  2. Your local branch should not have conflicts with repository develop branch. To avoid it, before push to repository, do:
    git pull origin develop
    # resolve all conflicts, if they exists
    git add --all
    git commit -m "fix conflicts"
    git push origin <your-branch-name>
  3. We use next naming of branches:

| branch template | description | | ------------------------------------ | ----------------------------------------------------------- | | feat/<short-feature-name> | new feature, ex. feat-add-logger | | fix/<short-fix-name> | fix of existing feature, ex. fix-logger | | refactor/<short-scope-description> | refactor, linting, style changes, ex. style-update-eslint | | test/<short-scope-descriptiopn> | tests, ex. test-db-connections | | docs/<short-scope-descriptiopn> | documentation, ex. test-db-connections |

Important, before push
  1. We use eslint with this rules to lint code, before making pull request, lint your code:

    npm run lint
  2. Before making pull request, run tests

    npm run test