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

loggabat

v1.0.3

Published

Special Logger for filtering logs you need in production, and logs you need in test mode only

Downloads

2

Readme

Loggabat

Special Logger for filtering logs you need in production, and logs you need in test mode only.

Do not dread over which comments you need to eliminate before production, LoggaBat got ur' back!!

Get a full history of all messages you have logged to your console, just at the call of a function


const loggabat = new Loggabat({
    productionMode: process.env.NODE_ENV
});

loggabat.warn("First goblin on the ground!!");

Features

  • Selectively log messages to your console, by flags

  • Organize all your logs to your console

  • Recollect all messages you have logged

Installation

Loggabat requires [JS] to run.

Install the dependency via npm

npm install --save loggabat

Importing

// Using Node.js - require()
const Loggabat = require('loggabat');

// Using ES6 imports
import Loggabat from 'loggabat';

Usage

Creating a new loggabat:

const loggabat = new Loggabat({
    productionMode: true,  // I am running in production mode
    prefix: "My app name space"
});

Setting environments:


// First approach, through a constructor
const loggabat = new Loggabat({ productionMode: true });

// Second approach
loggabat.setTestEnvironment(); // Environment in test mode now
loggabat.setProductionEnvironment(); // Environment in production mode now
loggabat.info(); // corresponds to console.info()
loggabat.log(); // corresponds to console.log()
loggabat.warn(); // corresponds to console.warn()
loggabat.error(); // corresponds to console.error()

Logging to your console:

const loggabat = new Loggabat({
    productionMode: true,  // I am running in production mode
    prefix: "My app name space"
});

loggabat.info("I am confirmed"); // {nothing happens}

loggabat.prod().info("I am confirmed"); // My app name space: I am confirmed
loggabat.production().info("I am confirmed"); // My app name space: I am confirmed

loggabat.setTestEnvironment(); // In test environment now

loggabat.info("I am confirmed"); // My app name space: I am confirmed
loggabat.prod().info("I am confirmed"); // My app name space: I am confirmed
loggabat.production().info("I am confirmed"); // My app name space: I am confirmed

All messages you need in production should be preceeded by "prod()" or "production()". This identifies your log message as a production-friendly one. Only production-friendly messages will be logged and recorded in a production environment

Setting your prefix:

// Assuming loggabat is already in test mode
loggabat.setPrefix("My app's new name");

loggabat.warn("App crashed"); // My app's new name: App crashed

Getting your prefix set to your Loggabat instance:

const loggabat = new Loggabat({ prefix: "Waist Training App" });
loggabat.prefix(); // Waist Training App

Determine prefix set already for a Loggabat instance:

const loggabat = new Loggabat({ });
loggabat.isPrefixSet(); // false

loggabat.setPrefix("Bomberman!!!!");
loggabat.isPrefixSet(); // true

Getting history of all successful logs:

loggabat.setProductionEnvironment(); // In production mode now, only production-friendly messages are accepted

loggabat.info("Parables"); // {nothing happens - not added to history}
loggabat.prod().info("Crucibles"); // Crucibles {Saved to history}

loggabat.setTestEnvironment(); // In test mode now
loggabat.prod().info("Tahoes"); // Tahoes {Saved to history}
loggabat.info("Placenta"); // Placenta {Saved to history}

loggabat.getHistory();
// [
//    { type: 'info', logged:'true', message: "Crucibles"}, 
//    {..., message:'Tahoes'},
//    {..., message:'Placenta'}
//  ]

Resetting your history:

loggabat.resetHistory(); // clears history
loggabat.getHistory() //  Returns -> []

Misc

Project is in its early stages and all contributions are welcome.

Contribution Guide

Documentation to follow soon

License

MIT © Justice Appiah