Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 days 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T04:37:40.000Z (over 1 year ago)
- Last Synced: 2024-10-02T10:48:49.338Z (about 1 month 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
======================[![Build Status](https://travis-ci.com/erykpiast/webpack-stats-explorer.svg?branch=master)](https://travis-ci.com/erykpiast/webpack-stats-explorer)
[![dependencies Status](https://david-dm.org/erykpiast/webpack-stats-explorer/status.svg)](https://david-dm.org/erykpiast/webpack-stats-explorer)
[![devDependencies Status](https://david-dm.org/erykpiast/webpack-stats-explorer/dev-status.svg)](https://david-dm.org/erykpiast/webpack-stats-explorer?type=dev)
[![Greenkeeper badge](https://badges.greenkeeper.io/erykpiast/webpack-stats-explorer.svg)](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.