https://github.com/lomby92/encore-entrypoints-analyzer
Webpack plugin for Symfony Encore that shows entrypoints.json file content in an interactive map
https://github.com/lomby92/encore-entrypoints-analyzer
analyze bundle encore symfony webpack
Last synced: 2 months ago
JSON representation
Webpack plugin for Symfony Encore that shows entrypoints.json file content in an interactive map
- Host: GitHub
- URL: https://github.com/lomby92/encore-entrypoints-analyzer
- Owner: lomby92
- License: mit
- Created: 2022-01-20T07:57:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-29T10:45:11.000Z (over 4 years ago)
- Last Synced: 2025-10-10T09:29:11.360Z (8 months ago)
- Topics: analyze, bundle, encore, symfony, webpack
- Language: TypeScript
- Homepage:
- Size: 193 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README





# Encore entrypoints analyzer
Webpack plugin for Symfony Encore that shows entrypoints.json file content in an interactive map
## Install
NOTE: this tool is intended to work only with [Symfony Encore](https://github.com/symfony/webpack-encore).
```bash
# NPM
npm install --save-dev encore-entrypoints-analyzer
# Yarn
yarn add -D encore-entrypoints-analyzer
```
## Usage
```js
// File: webpack.config.js
const config = Encore.getWebpackConfig();
...
const EncoreEntrypointsAnalyzerPlugin = require('encore-entrypoints-analyzer');
config.plugins.push(new EncoreEntrypointsAnalyzerPlugin());
```
It will create an interactive view of the entrypoints and chunks in your build.

## Contributing
Check out [CONTRIBUTING.md](./CONTRIBUTING.md) for instructions on contributing :tada: