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

logger-notifier

v1.1.2

Published

Logger Notifier - because sometimes even your code needs a little nudge to get noticed! This npm package makes logging messages to the console more exciting by also sending notifications. Debugging has never been this much fun!

Downloads

18

Readme

Logger-Notifier

Logger-Notifier is a versatile npm package designed primarily for debugging purposes. It provides a straightforward way to log messages to the console and display notifications. This package enhances the traditional logging experience by allowing developers to categorize messages into different types (e.g., informational, error) and customize the display of notifications accordingly.

Installation

To install Logger-Notifier, simply use npm:

npm install logger-notifier

Usage

Logger-Notifier can be utilized in various scenarios where debugging is required. It offers flexibility in logging messages and displaying notifications based on the logged data. Below is an example of how you can use Logger-Notifier:

const logger = require('logger-notifier');

// Log an informational message
logger.log("Info", "This is an informational message");

// Log an error message
logger.err("Oops! Something went wrong", "Error");

In the above example, we first import the logger module and then use it to log messages. The log function is employed for logging informational messages, while the err function is used for logging error messages. Both functions accept two parameters: title and body. Additionally, you can specify the type of the log message, which defaults to 'log' if not explicitly provided.

Debugging

Logger-Notifier shines as a debugging tool, aiding developers in identifying issues during development. It allows you to log variables, objects, or any data you want to inspect. Consider the following example demonstrating how Logger-Notifier can be used for debugging:

import React, { useState } from "react";
import logger from "logger-notifier";

function Counter() {
  const [count, setCount] = useState(0);

  // Log the initial state
  logger.log("Initial count:", count);

  // Function to increment the count
  const increment = () => {
    const newCount = count + 1;
    setCount(newCount);
    logger.log("Count incremented to", newCount);
  };

  // Function to decrement the count
  const decrement = () => {
    const newCount = count - 1;
    setCount(newCount);
    logger.log("Count decremented to", newCount);
  };

  return (
    <div>
      <h1>Counter</h1>
      <p>Count: {count}</p>
      <button onClick={increment}>Increment</button>
      <button onClick={decrement}>Decrement</button>
    </div>
  );
}

export default Counter;

In this example, the Counter component maintains a count state using the useState hook. The initial count state is logged when the component mounts using Logger-Notifier. Each button click triggers a corresponding function (increment or decrement), updating the count state and logging the new count using Logger-Notifier.

Features

  • Log messages to the console with different types (e.g., informational, error).
  • Display notifications based on the logged messages.
  • Convenient debugging tool for identifying issues during development.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Feel free to customize this README to suit your preferences or add more details!