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

Node.js logger with web dashboard

  • 1.11.5
  • unpublished
  • npm
  • Socket score

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

Errsole: Node.js Logger with Interactive Dashboard

Errsole is an innovative open-source logger designed specifically for Node.js applications. It goes beyond traditional logging by capturing log messages and storing them in a specified database. What sets Errsole apart is its interactive web dashboard, which allows users to effortlessly view, filter, and analyze their logs in real time.

Features

  • Effortless Integration: Get Errsole up and running with minimal setup, seamlessly integrating into your Node.js projects.
  • Automated Log Capture: Automatically captures both informational and error logs, ensuring that you never miss vital application insights.
  • Interactive Web Dashboard: Utilize the intuitive web interface for a comprehensive log analysis experience, enabling efficient log viewing, filtering, and real-time insights.

Quick Start Guide

Setting Up with MongoDB

  1. Installation: Begin by installing Errsole and its MongoDB adapter through npm:

    npm install errsole errsole-mongodb
    
  2. Configuration: Initialize Errsole in your application with MongoDB as the storage option:

    const errsole = require('errsole');
    const ErrsoleMongoDB = require('errsole-mongodb');
    
    errsole.initialize({
      storage: new ErrsoleMongoDB('your-mongodb-url', 'your-database-name'),
      port: 8001, // Optional: Specify the dashboard port (default is 8001)
      path: '/'  // Optional: Specify the dashboard base path (default is '/')
    });
    
    • Replace 'your-mongodb-url' with your actual MongoDB connection URL.
    • Replace 'your-database-name' with the name of the database where logs should be stored.

Example Usage

Integrate Errsole into a simple Express app to see it in action:

const express = require('express');
const app = express();

// Errsole setup (as shown above)

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

app.listen(3000, () => console.log('Server running on http://localhost:3000'));

Accessing the Dashboard

Once Errsole is integrated and your application is running, access the Errsole dashboard through your web browser:

http://localhost:8001/

If you specified a custom port or path during initialization, adjust the URL accordingly.

Contribution and Support

Contributing: Contributions are highly encouraged! If you have suggestions for improvements, feel free to fork the repository, make your changes, and submit a pull request.

Support: For support, questions, or feature requests, please open an issue on the GitHub repository. We're here to help make Errsole even better!

Keywords

FAQs

Package last updated on 28 Mar 2024

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