visualv8
v1.2.6
Published
visual UI for node.js memory and CPU usage, just like visualVM for java virtual machine
Downloads
6
Maintainers
Readme
visualV8
This module provides node.js process memory and CPU usage data.
Installation
npm install visualv8
Features
Socket.io
api for consuming memory and CPU usage data- Web UI for visualizing memory and CPU process usage
Install & run the sample application (usage demo)
cd example
npm install
node index.js
Then access http://localhost:1919
How to use?
Just add the module to your code base and the UI will be by default on: http://localhost:1919
const visualV8 = require('visualv8')();
Configure host and port your self:
const visualV8 = require('visualv8')({
host: 'localhost',
port: 8081,
interval: 6000 // Time to push usage data to client
});