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

errsole npm module

  • 0.1.7
  • unpublished
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Errsole

npm version

Features

View your app errors and their root cause

Errsole captures all errors raised in your Node.js app and the HTTP requests that caused the errors. You can view all your app errors and the root cause of each error in one place.

Debug your app code in real-time

Errsole creates a clone of your live app and provides a debugger interface to the app clone. You can replay the captured errors and debug the app code in real-time. Your users are not impacted while you debug the app code.

Collaborate with your team members

You can add developers to your app team. Your team members can view, debug, and fix errors raised in your app.

Demo Video

Watch the video

Installation and Usage

  1. Errsole is a Node.js module. You can install this module using the npm install command:
npm install errsole
  1. Click on the link below to get the Errsole code snippet. Put the code snippet at the top of your app's main file.
    https://errsole.com/#apps/get-app-token

Example

/**
 * Put the Errsole code snippet at the top of your app's main file
 */
require('errsole').initialize({
  framework: 'express',
  token: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
})

/**
 * 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 email us at support@errsole.com.
For bug reports, please open an issue on GitHub.

License

MIT

Keywords

FAQs

Package last updated on 02 Nov 2021

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