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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@babl.one/logger-pretty

v0.0.59

Published

Our super-cool logger that makes everything look pretty

Downloads

31

Readme

babl.one Plugin :: @babl.one/logger-pretty

This plugin replaces app.log with a colorized and structured console output, providing better visibility into application logs.

Overview

The Console Pretty Logger Plugin enhances the logging functionality of your application by providing colorized and structured output. It supports various log levels such as info, warn, error, debug, and more. It is integrated with the app.log function, which is used to log messages throughout the application.

Installation

To use the plugin, follow these steps:

  1. Install the plugin using npm:
    npm install @babl.one/logger-pretty

Configuration

There is no complex configuration needed to get started with the Console Pretty Logger plugin. Simply install and initialize the plugin, and you can begin logging messages.

Example of usage:

  1. Import and initialize the plugin in your application:

npm install @babl.one/logger-pretty

Logging Levels

The Console Pretty Logger plugin supports several logging levels:

  • info: Standard informational messages.
  • warn: Warning messages to alert you about potential issues.
  • error: Error messages for issues that need attention.
  • success: Indicates successful operations.
  • debug: Debugging information for development and troubleshooting.
  • timer: Used for displaying timed logs.
  • head: Used for displaying prominent heading messages.
  • complete: Marks completion of a process.
  • break: Used for breaking the flow and throwing an error (logs in red).

Example Usage:

app.log('This is an info message', 'info');
app.log('This is a warning message', 'warn');
app.log('This is an error message', 'error');
app.log('Operation completed successfully', 'success');
app.log('This is a debug message', 'debug');
app.log('This is a timer message', 'timer');
app.log('Header information', 'head');
app.log('Completed task message', 'complete');
app.log('This is a critical error', 'break');  // Will throw error

License

This project is licensed under the MIT License.