Webpackmonitor

A tool for monitoring webpack optimization metrics through the development process
Alternatives To Webpackmonitor
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Webpackmonitor2,39154314 years ago15December 05, 201736mitJavaScript
A tool for monitoring webpack optimization metrics through the development process
Downhill102
225 years ago8January 12, 2017mitPython
Stochastic gradient routines for Theano
Webpackmonitor Module841523 years ago4November 21, 20171mitJavaScript
Monitor nuxt webpack optimization metrics through the development process using webpackmonitor
Auxpack78
3 years ago17December 20, 20191mitJavaScript
A dashboard for monitoring Webpack build stats.
Decrypticon15
2 years agobsd-3-clausePython
Java-layer Android Malware Simplifier
Bbedit_reverse_color_scheme4
10 years agounlicense
If you reverse the screen colors on your monitor on long days of coding it is much easier on the eyes. This is a representation of the default settings of the colors in BBEdit reversed and tweaked slightly for optimization.
Docker Gentoo Steemd2
6 years agounlicenseShell
Steemd built inside a Docker container using a Gentoo base with size optimization
Alternatives To Webpackmonitor
Select To Compare


Alternative Project Comparisons
Readme

Please note that Webpack Monitor is NOT currently maintained - sorry 😢

Webpack Monitor

Webpack Monitor is a configurable Webpack plugin that captures relevant statistics on your production builds, and an interactive analysis tool that helps developers better understand bundle composition and identify and prioritize optimization strategies.

NPM version Downloads

Usage

webpack monitor analysis tool

Install the webpack monitor plugin on your production config. The plugin will collect stats whenever meaningful changes to bundle composition have occurred. Optionally launch analysis too to see how your bundles have changed over time!

Setup

npm install --save-dev webpack-monitor

in webpack.config.js

const WebpackMonitor = require('webpack-monitor');

// ...

plugins: [
  new WebpackMonitor({
    capture: true, // -> default 'true'
    target: '../monitor/myStatsStore.json', // default -> '../monitor/stats.json'
    launch: true, // -> default 'false'
    port: 3030, // default -> 8081
    excludeSourceMaps: true // default 'true'
  }),
],
  • capture will collect stats on the build where meaningful changes have occurred. We do not capture build data where the build does not differ from most recent build on file.
  • target specify where to save your build data
  • launch will fire up a local server and launch the webpack monitor analysis tool
  • port optionally set the port for local server
  • excludeSourceMaps excludes emitted source maps from the build stats

Contributing

To contribute to webpack-monitor, fork the repository and clone it to your machine then install dependencies with npm install. If you're interested in joining the Webpack Monitor team as a contributor, feel free to message one of us directly!

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Popular Optimization Projects
Popular Monitor Projects
Popular Software Performance Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Plugin
Monitoring
Monitor
Optimization