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

discord-logging-handler

v1.2.4

Published

Discord webhook logger for Node.js. Supports log levels, embeds, timestamps, and error stack traces for real-time monitoring.

Readme

Discord Logging Handler

npm downloads npm version License

A lightweight Node.js logging handler that sends application logs to Discord channels via webhooks, with color-coded embeds, timestamps, and stack traces.

Features

  • Colour-coded embeds by log level
  • Supports full stack traces for errors and exceptions
  • Configurable minimum log level
  • Async, non-blocking log delivery
  • Simple drop-in integration for any Node.js project

Installation

npm install discord-logging-handler

Usage

Initialise the logger with:

Object style (Typescript / Recommended)

import DiscordLog from 'discord-logging-handler';

const logger = new DiscordLog('WEBHOOKURL', { level: 'LEVEL' })

Legacy style (Javascript)

import DiscordLog from 'discord-logging-handler';

const logger = new DiscordLog('WEBHOOKURL', 'LEVEL')
  • WEBHOOKURL: Your webhook from Discord Integrations. Use DEV to enable development mode (logs are suppressed during builds/tests).
  • LEVEL (optional): The minimum level that should trigger logs to be sent to Discord. Defaults to 'ERROR'.

Send logs with:

logInstance.log('Message', 'LEVEL', error)
  • LEVEL (optional): Log severity- 'DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'. Defaults to 'INFO'.
  • error (optional): An Error object or exception to include in the log. Defaults to null.

Example

import DiscordLog from 'discord-logging-handler'

const logger = new DiscordLog('YOUR_WEBHOOK_URL', 'DEBUG')

logger.log('This is an INFO log', 'INFO')

try {
    throw new Error('Sample error')
} catch (err) {
    logger.log('An error occurred', 'ERROR', err)
}

Discord Webhook Setup

Discord allows webhooks to be created via Server Settings → Integrations.

  1. Go to Server Settings → Integrations
  2. Under Webhooks, click New Webhook
  3. Copy the generated webhook URL

server settings webhooks

Changelog

See the full Changelog for details on version history.

Contributing

Contributions, issues, and feature requests are welcome!
Feel free to open an issue or submit a pull request on GitHub.

License

MIT License

Copyright (c) 2025 Moses White