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

nodestability

v1.4.0

Published

The NodeStability module is a powerful tool for enhancing the stability of Node.js applications. It actively prevents crashes by handling and logging various types of errors, providing a robust and reliable foundation for your Node.js projects. With featu

Downloads

21

Readme

NodeStability Module

The NodeStability module is designed to prevent crashes in your Node.js applications by handling and logging various types of errors. It provides an easy-to-use interface for setting up event listeners and integrating with webhooks for error reporting.

Features

  • Crash Prevention: The module actively listens for unhandled rejections, uncaught exceptions, and multiple resolves, preventing your application from crashing.
  • Webhook Integration: Receive error notifications via webhooks, making it easier to monitor and respond to issues.
  • Customizable Options: Configure the module with options such as enabling/disabling crash prevention, specifying webhook details, and controlling error logging.

Installation

npm install nodestability

Usage

const NodeStability = require('nodestability');

// Initialize NodeStability with options
const options = {
  enable: true,
  withWebhook: true,
  webhookURL: 'YOUR_WEBHOOK_URL',
  webhookType: 'discord', // or 'selfHosted'
  logErrors: true,
};

const nodeStability = new NodeStability(options);

Configuration Options

  • enable (boolean): Enable or disable crash prevention.
  • withWebhook (boolean): Enable or disable webhook integration.
  • webhookURL (string): Specify the URL of the webhook for error notifications.
  • webhookType (string): Choose the webhook type (discord or selfHosted).
  • logErrors (boolean): Enable or disable logging errors to the console.

Examples

Below are examples demonstrating how to integrate the Anti-Crash module into a Node.js app and a Discord.js bot. These examples assume you have already installed the anti-crash module.

Node.js Application Example:

// index.js

const NodeStability = require('nodestability');

// Initialize NodeStability with options
const options = {
  enable: true,
  withWebhook: true,
  webhookURL: 'YOUR_WEBHOOK_URL',
  webhookType: 'discord', // or 'selfHosted'
  logErrors: true,
};

const nodeStability = new NodeStability(options);

// Simulate an unhandled rejection
setTimeout(() => {
  Promise.reject(new Error('Simulated Unhandled Rejection'));
}, 2000);

// Simulate an uncaught exception
setTimeout(() => {
  throw new Error('Simulated Uncaught Exception');
}, 4000);

Discord.js Bot Example:

// bot.js

const Discord = require('discord.js');
const NodeStability = require('nodestability');

const client = new Discord.Client();
const nodeStability = new NodeStability({
  enable: true,
  withWebhook: true,
  webhookURL: 'YOUR_WEBHOOK_URL',
  webhookType: 'discord',
  logErrors: true,
});

client.on('ready', () => {
  console.log(`Logged in as ${client.user.tag}`);
});

client.on('message', (message) => {
  if (message.content.toLowerCase() === '!simulateError') {
    // Simulate an unhandled rejection within a command
    process.nextTick(() => {
      Promise.reject(new Error('Simulated Unhandled Rejection in Command'));
    });
  }
});

// Log in to Discord
client.login('YOUR_BOT_TOKEN');

Replace 'YOUR_WEBHOOK_URL' and 'YOUR_BOT_TOKEN' with your actual webhook URL and Discord bot token, respectively.

Contributing

If you find a bug or have a feature request, please open an issue or submit a pull request. Contributions are welcome!

License

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