https://github.com/erykpiast/webpack-stats-explorer
Explore your app bundle and compare sizes between builds
https://github.com/erykpiast/webpack-stats-explorer
bundle performance visualization webpack
Last synced: 3 months ago
JSON representation
Explore your app bundle and compare sizes between builds
- Host: GitHub
- URL: https://github.com/erykpiast/webpack-stats-explorer
- Owner: erykpiast
- License: mit
- Created: 2019-01-10T09:22:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T04:37:40.000Z (over 2 years ago)
- Last Synced: 2025-02-25T00:44:57.369Z (5 months ago)
- Topics: bundle, performance, visualization, webpack
- Language: JavaScript
- Homepage: https://erykpiast.github.io/webpack-stats-explorer/
- Size: 68.7 MB
- Stars: 23
- Watchers: 3
- Forks: 1
- Open Issues: 95
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
webpack-stats-explorer
======================[](https://travis-ci.com/erykpiast/webpack-stats-explorer)
[](https://david-dm.org/erykpiast/webpack-stats-explorer)
[](https://david-dm.org/erykpiast/webpack-stats-explorer?type=dev)
[](https://greenkeeper.io/)Tool for exploring webpack stats and comparing them between builds. See [an introduction](https://dev.to/erykpiast/why-does-your-bundle-grow-a7n) and [a follow-up article at dev.to](https://dev.to/erykpiast/the-story-about-a-few-imports-40jm).
## Demo
https://erykpiast.github.io/webpack-stats-explorer/
## Development
### Run Project
```sh
npm install
npm start
# in another tab
npm run webpack
```
After you see the webpack compilation succeed (the `npm run webpack` step), open up `http://localhost:8080` in the browser.### Build for Production
```sh
npm run build
npm run webpack:production
```This will replace the development artifact `build/bundle.js` for an optimized version.