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

conslog

v1.1.1

Published

Console Logging, done the right way.

Downloads

5

Readme

ConsLog

The console, rewritten from scratch.

Usage

To install,

npm install conslog

or

yarn add conslog

After that, there are three ways to use ConsLog. The first way is to replace the console object.

delete console;
const console = require('conslog');

The second, semi-safe way is to move the console object.

const v8 = require('v8');
const clone = obj => {
  return v8.deserialize(v8.serialize(obj));
};
const oldConsole = clone(console) // Or however you want to deepclone.
delete console;
const console = require('conslog')

The third, safer way, is to include it as a separate package.

const cons = require('conslog');

Functions

  • console is ConsLog, oldC is the original console.

log

function log(msg: any, ...optionalParams?: any[]);

Logs to stdout. Works exactly like oldC.log except for the indentation.

warn

function warn(msg: any, head?: string, ...optionalParams?: any[]);

Logs to stdout as a warning. Prefixed with 'warn' or head.

info

function info(msg: any, head?: string, ...optionalParams?: any[]);

Logs to stdout as an information. Prefixed with 'info' or head.

error

function error(e: Error, head?: string, ...optionalParams?: any[]);

Logs to stdout as an error. Doesn't throw. Prefixed with 'err' or head.

success

function success(msg: any, head?: string, ...optionalParams?: any[]);

Logs to stdout as a success message. Prefixed with 'succ' or head.

fatal

function fatal(e: Error, head?: string, ...optionalParams?: any[]);

Logs to stdout as a fatal error. Throws. Prefixed with 'fatal' or head.

changeTheme

interface Theme {
  i: string[], // Info color, defaults to ["blue"]
  hi: string[],// Info prefix color, defaults to ["bgBlue", "white"]
  w: string[], // Warn color, defaults to ["yellow"]
  hw: string[],// Warn prefix color, defaults to ["bgYellow", "white"]
  e: string[], // Error color, defaults to ["red"]
  he: string[],// Error prefix color, defaults to ["bgRed", "white"]
  f: string[], // Fatal color, defaults to ["magenta"]
  hf: string[],// Fatal prefix color, defaults to ["bgMagenta", "white"]
  s: string[], // Success color, defaults to ["green"]
  hs: string[],// Success prefix color, defaults to ["bgGreen", "white"]
  c: string[], // Catched error color, defaults to ["red"]
  hc: string[],// Catched error prefix color, defaults to ["bgGreen", "white"]
  g: string[]  // Group header color, defaults to ["inverse"]
}

function changeTheme(theme: Theme);

Sets the color theme. See the colors doc for information on how to write a theme.

Variables

indentationSteps

let indentationSteps: number = 1;

How many spaces to indent each time.

maxIndent

let maxIndent: number = 10;

The maximum indentation you can reach. Set to -1 for no limit.

msg

interface Messages {
  info: string,
  warn: string,
  error: string,
  fatal: string,
  catched: string,
  success: string,
  groupIn: string,
  groupOut: string
}

let msg: Messages = {
  info: " INFO ",
  warn: " WARN ",
  error: "  ERR ",
  fatal: "FATAL ",
  catched: "CATCH ",
  success: " SUCC ",
  groupIn: "> ",
  groupOut: "< "
}

The prefixes applied to the specific logging functions.

License

MIT