express-control-room
v0.0.3
Published
Express Control Room is a middleware package for the Express.js framework designed to provide a centralized control interface for managing and monitoring various aspects of your Express application and the server. It offers features such as real-time logg
Downloads
16
Maintainers
Readme
express-control-room
Express Control Room is a middleware package for the Express.js framework designed to provide a centralized control interface for managing and monitoring various aspects of your Express application and the server. It offers features such as real-time logging, route management, and request/response inspection, server monitoring.
Installation
npm i express-control-room
Getting started
const express = require('express');
const { ControlRoom } = require('express-control-room');
const app = express();
const port = 3000;
// Define a route
app.get('/', (req, res) => {
res.send('Hello, World!');
});
// connect ControlRoom into express using middleware
app.use(ControlRoom);
// Start the server
app.listen(port, () => {
console.log(`Server is running on http://localhost:${port}`);
});
Usage
Features
- [x] Custom logs store and realtime response
- [ ] Real-time logging of server activities.
- [ ] Dynamic route management and inspection.
- [ ] Request and response analysis for debugging.
- [ ] Request logs store and realtime response
- [ ] PM2 application management
API's and Stream's
| Method | URL | Comments | |--------|------------------------------------------|---------------------------------------| | GET | /control-room/utils | Returns server details | | GET | /control-room/token | Returns auth token | | GET | /control-room/logs/default/stream | SSE stream default logs on realtime |
License
MIT