0.4.14 • Published 8 months ago

express-insight v0.4.14

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

Express Insight

Overview

Express Insight is a logging middleware for Express.js applications. This project aims to provide detailed insights into incoming requests and outgoing responses in an Express application, helping developers better understand and debug their web applications

Tech Stack

Usage

Here's a basic implementation of the core plugin with the error plugin

import express from 'express';
import ExpressInsight from 'express-insight';

const app = express();

const expInsight = ExpressInsight.setupExpressInsight(app, {
  projectName: "Local Project",
  error: {
    enable: true,
  },
});

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

expInsight.setupErrorPlugin();
app.listen(3000);

Screenshots

image

Contribution

This is a personal project for learning purposes, but I'm open to suggestions and feedback. Feel free to open an issue if you have ideas on how I can improve this project or my coding practices.

License

This project is open source and available under the MIT License.


Created with 💓 by Saphal Poudyal

0.4.14

8 months ago

0.4.13

9 months ago

0.4.12

9 months ago

0.4.11

9 months ago

0.4.10

10 months ago

0.4.9

10 months ago

0.4.8

10 months ago

0.4.7

10 months ago

0.4.6

10 months ago

0.4.5

10 months ago

0.4.4

10 months ago

0.4.3

10 months ago

0.4.1

10 months ago

0.4.0

10 months ago

0.3.0

10 months ago

0.1.0

10 months ago

0.2.2

10 months ago