Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

errsole

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

errsole

Error Logger and Remote Debugger

  • 1.6.4
  • unpublished
  • npm
  • Socket score

Version published
Weekly downloads
457
decreased by-27.23%
Maintainers
1
Weekly downloads
 
Created
Source

Fix Your Node.js Errors in Minutes

Error Logger and Remote Debugger for Node.js Production Environments

release last commit issues license


Manual Debugging vs Errsole Debugging

Features

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

:star: We appreciate your star, it helps!


Getting Started

Install

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

npm install errsole

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.

Setup Errsole

Example

/**
 * Insert this Errsole code snippet as the first line of your app's main file
 */
const errsole = require('errsole');
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);

Try Live Demo

Experience Errsole firsthand by troubleshooting errors in our demo app:

Try Live Demo


Documentation

For a complete product documentation, please visit our documentation page:

https://www.errsole.com/documentation/


Support

If you run into any issues, please email us at support@errsole.com.

For bug reports, please open an issue on GitHub.

Keywords

FAQs

Package last updated on 07 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc