A plugin for vConsole.
npm install vconsole-stats-pluginvconsole-stats-plugin
==============================

A vConsole plugin which can show Stats in front-end.
Based on the Stats https://github.com/mrdoob/stats.js
Download the latest version(copy dist/vconsole-stats-plugin.min.js). See all demo code: ``/example/demo.html`
`html`
Or, install via npm:
`bash`
npm install vconsole-stats-plugin -S`js`
import VConsole from 'vconsole';
import VConsoleStatsPlugin from 'vconsole-stats-plugin';
const vConsole = new VConsole();
const plugin = new VConsoleStatsPlugin(vConsole);
- Show/Close Stats
- Change Stats Panel
#### JavaScript Performance Monitor ####
This class provides a simple info box that will help you monitor your code performance.
* FPS Frames rendered in the last second. The higher the number the better.
* MS Milliseconds needed to render a frame. The lower the number the better.
* MB MBytes of allocated memory. (Run Chrome with --enable-precise-memory-info`)
* CUSTOM User-defined panel support.