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

mr-console

v1.0.5

Published

A console logger allows to personalize color for many people who contribute on the same project. Every single member could choose his particular color to identify his logging information quickly and easily.

Downloads

122

Readme

mr-console

A powerful console logger javascript library

Features

  • Support a variety of logging levels
    • Classify information by trace, debug, info, warn, error and fatal
    • Disable console logging on production
  • Print out logs corresponding with the source file and line number
  • Print out object, array with structure instead of stringifying them
  • Allow adding one or many colorful tags

How to install

npm install mr-console --save

OR

yarn add mr-console

Example usage

Configure the console logger by passing an object options with the method setup()

import MrConsole from 'mr-console';

process.env.NODE_ENV = 'production';

// trigger window.log with the method setup()
MrConsole.setup({
  level: process.env.NODE_ENV !== 'production' ? 'debug' : 'info'
});

log.trace('trace'); // will not do anything
log.debug('debug'); // will not do anything
log.log('log'); // will output 'log\n' on STDOUT
log.info('info'); // will output 'info\n' on STDOUT
log.warn('warn'); // will output 'warn\n' on STDERR
log.error('error'); // will output 'error\n' on STDERR
log.fatal('fatal'); // will output 'fatal\n' on STDERR

Options

level

A string to specify the log level. Defaults to debug.

prefix

Specify this option if you want to set a prefix for all log messages. This must be a string or a function that returns a string.

Will get the level of the currently logged message as the first argument.

stderr

A boolean to log everything to stderr. Defauls to false.

background

A string to define background color code to log.debug. Defauls to #0000ff.

color

A string to define forecolor code to log.debug. Defauls to #ffffff.

License

MIT