Server-Visualizer
Server-Visualizer is an Express middleware that helps developers visualize their server activities, by providing a user interface with charts illustrating the server response code, fetch method and request time.
About
-
Server-Visualizer allows developers to monitor request methods, response status codes, and related timings.
-
Data can be accessed using a GUI served from the same development port as the main app.
-
Displays a pie chart and a list of requests updated in real time.
Install
npm install server-visualizer
Usage
const serverVisualizer = require('server-visualizer');
serverVisualizer.start(app[, route])();
app.use(serverVisualizer.run());
License
This project is licensed under the MIT License - see the LICENSE.md file for details.