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

@errsole/node

v3.0.0

Published

Error Logger and Remote Debugger

Downloads

225

Readme


Links


Features

Centralized logging

Experience centralized logging at its finest. Collect, visualize, and filter Node.js logs seamlessly with our intuitive interface.

  • Automatic log collection
  • Intelligent grouping
  • Smart filtering

All errors in one place

Put an end to the endless search for errors in your app logs. Errsole centralizes all your app errors in one place for instant viewing and easy resolution.

  • Errors
  • Uncaught exceptions
  • Failed requests
  • Slow requests

Root cause of every error

Don't settle for just error stacks. With Errsole, you can pinpoint the exact HTTP requests that caused errors.

  • HTTP requests that caused errors
  • HTTP requests that caused uncaught exceptions
  • User activity that led to errors

Real-time notifications

Errsole provides you with real-time notifications regarding errors in your app, enabling quick response and resolution.

  • Email notifications
  • Slack notifications
  • Real-time error notifications
  • Daily summary

Debugger for production

Say goodbye to console.log statements. With Errsole Debugger, you can debug your production environment directly from your web browser.

  • Reproduce errors
  • Debug your production environment
  • Your production code remains untouched
  • Your live app and users are unaffected

Getting Started

Install

Errsole is a Node.js module. You can install this module using the npm install command:

npm install @errsole/node

Configure

You must obtain a unique token to configure the Errsole module in your app.

Follow the steps below to generate a unique token:

  1. Click on the button below to go to the Errsole website.
  2. Create an Errsole account or sign in with an existing one.
  3. Create an entry for your app.
  4. Copy the code snippet generated for your app, which includes a unique token.
  5. Insert the code snippet as the first line of your app's main file.
  6. Deploy your app as usual. Once deployed, Errsole will start capturing errors and associating them with your app's entry in the Errsole platform.

Example

/**
 * Insert this Errsole code snippet as the first line of your app's main file
 */
const errsole = require('@errsole/node');
errsole.initialize({
  framework: 'express',
  token: '[Your Errsole Token]'
});
// End of Errsole code snippet

/**
 * Your app code starts here
 */
const express = require('express');
const app = express();

app.get('/', function (req, res) {
  res.send('Hello World');
});

app.listen(3000);

Support

If you run into any issues, please raise a ticket at Errsole Support.