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

justina3-logger

v1.0.1

Published

A simple logging package for Node.js projects with customizable formatting for different logging levels

Downloads

2

Readme

justina3-logger

A simple logging package for Node.js projects with customizable formatting for different logging levels

justina3-logger

https://github.com/Justinn253/justina3-logger

SUMMARY

A simple logging package for Node.js projects with customizable formatting for different logging levels.

Usage

Logger has 6 different logging levels: 'default logging', info, verbose, debug, warn, error Each of these levels has a corresponding function with a default color formatting. Each function accepts two arguments, a tag and the logging message.

Obtaining a Logger

const logger = require('logger')

Logging

logger('Log tag', 'Log message') //logs to the default logging level
logger.info('hello.js', 'Check this out!') //logs an informational message
logger.error('hello.js', 'Oh no!') //logs an error

Formatting

Each log level has its own default formatting. The formatting may be changed by passing a customized configuration json using:

logger.setConfig(require('./custom_config.json'))

Use the following JSON structure for the configuration JSON: (Note: all keys required for all logging levels)

{
   "log": {
       "tag" : {
           "fg": "default",
           "bg": "default"
       },
       "msg": {
           "fg": "default",
           "bg": "default"
       }
   },
   "verbose": {
       "tag" : {
           "fg": "fgBlack",
           "bg": "bgYellow"
       },
       "msg": {
           "fg": "fgBlack",
           "bg": "bgYellow"
       }
   },
   "debug": {
       "tag" : {
           "fg": "fgGreen",
           "bg": "default"
       },
       "msg": {
           "fg": "fgGreen",
           "bg": "default"
       }
   },
   "info": {
       "tag" : {
           "fg": "fgBlack",
           "bg": "bgCyan"
       },
       "msg": {
           "fg": "fgBlack",
           "bg": "bgCyan"
       }
   },
   "warn": {
       "tag" : {
           "fg": "fgBrightMagenta",
           "bg": "default"
       },
       "msg": {
           "fg": "fgBrightMagenta",
           "bg": "default"
       }
   },
   "error": {
       "tag" : {
           "fg": "fgWhite",
           "bg": "bgBrightRed"
       },
       "msg": {
           "fg": "fgBrightRed",
           "bg": "default"
       }
   }
}

Use the value default for no formatting. The following is a list of values for the allowed colors. This list uses standard ANSI escape character colors. https://en.wikipedia.org/wiki/ANSI_escape_code#Colors

/*
* Available Foreground Colors
*/
fgBlack
fgRed
fgGreen
fgYellow
fgBlue
fgMagenta
fgCyan
fgWhite

/*
* Available "Bright" Foreground Colors
*/
fgBrightBlack
fgBrightRed
fgBrightGreen
fgBrightYellow
fgBrightBlue
fgBrightMagenta
fgBrightCyan
fgBrightWhite

/*
* Available Background Colors
*/
bgBlack
bgRed
bgGreen
bgYellow
bgBlue
bgMagenta
bgCyan
bgWhite

/*
* Available "Bright" Background Colors
*/
bgBrightBlack
bgBrightRed
bgBrightGreen
bgBrightYellow
bgBrightBlue
bgBrightMagenta
bgBrightCyan
bgBrightWhite