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

jslogmgr

v0.1.7

Published

Javascript-based extension to the console API providing some of the benefit of a more robust and configurable logging utility.

Downloads

27

Readme

Build Status Coverage Status Dependencies npm version license Dev Status

jsLogMgr

"The most effective debugging tool is still careful thought, coupled with judiciously placed print statements." - Brian Kernighan

Javascript-based logger extension to the console API. The basic design principle behind this implementation is to provide an API extension to the console API while providing some of the benefit of a more robust and configurable logging library.

Features

  1. Ability to create loggers for specific code contexts (classes, functions, etc),
  2. Configurable control over:
  • color styling of log statements by level,
  • date, context, message formatting of logging statements (coming soon)
  • log output by level,
  1. API consistency with the console API for easy replacement and adoption.

Installation

NPM

$ npm install --save jslogmgr

Usage

import JsLogManager from 'jslogmgr';

class Rainbow {
    constructor () {
        // create the log manager.
        this.logManager = new JsLogManager();
        
        // create a logger, by contextual name.
        this.logger = this.logManager.getLogger('Rainbow');
        this.logger.info('Welcome to Rainbow, version 1.0');
    }

    run() {
        this.logger.time('blackmore');
        this.logger.trace('Application starting...');
        this.logger.debug('This is a debug message');
        this.logger.info('This is an informational message');
        this.logger.warn('This is a warning message');
        this.logger.error('This is an error message');
        this.logger.fatal('This is a fatal message');
        this.logger.timeEnd('blackmore');
    }
}

will result in:

Log output

Configuration

jsLogger is configurable to allow you to specify a minimum level of output you desire, style output by level, specify your date formatting and (coming soon) format your log output.

Minimum level output

If you want to suppress all output below ERROR when deploying your application, you can set this up by defining the minumum level in the configuration with LoggerConfig.setLevel(logLevel.ERROR).

Output styling by level

If you would like to change the styling of the log output by level, you can accomplish this by the LoggerConfig.setLevelStyling(level, styling) method. the styling parameter can take any combination of chalk styling attributes. See the Styles section of the chalk page.

Date formatting

You can also change the data format of the log messages by supplying any moment based date format string to LoggerConfig.setDateFormat(format).

Contributing

Use Github issues for feature requests and bug reports.

We actively welcome pull requests.

For setting up & starting the project locally, use:

$ git clone https://github.com/nhpace/jsLogMgr
$ cd jsLogMgr
$ npm install
$ npm run dev

LICENSE

MIT