0.6.8 • Published 6 months ago

next-bundle-analyzer v0.6.8

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Next Bundle Analyzer

Motivation

Webpack Bundle Analyzer is a great tool to analyze the bundles of web applications built on top of Webpack but trying to use it to optimize a large website with many pages can be tricky because you don't know which pages the different chunks belong to.

There is an official wrapper dedicated to Next.js, @next/bundle-analyzer, but it only allows (for now) to generate standard reports for the server and client builds of Next.

This library generates customized Webpack Bundle Analyzer reports in order to make them easier to use for Next users.

Demo

Installation

We recommend installing next-bundle-analyzer as dev dependency:

npm install -D next-bundle-analyzer

or

yarn add -D next-bundle-analyzer

Usage

// next.config.js

const shouldAnalyzeBundles = process.env.ANALYZE === true;

let nextConfig = {
  // [...]
};

if (shouldAnalyzeBundles) {
  const withNextBundleAnalyzer =
    require('next-bundle-analyzer')(/* options come there */);
  nextConfig = withNextBundleAnalyzer(nextConfig);
}

module.exports = nextConfig;

⚠️ If next-bundle-analyzer has been installed as dev dependency, itshould be required conditionally to prevent breaking Next.js in production.

Options

Root options

OptionValuesDefaultDescription
clientOnlytrue falsetrueWhen true, generate only a report for client side build.
enabledtrue falsetrueAllows to enable/disable the plugin.
format'html' 'json' 'html', 'json''html'The format of the report(s) to generate. It can be a single format or a list.
htmlSee HTML options.{}Options related to the HTML report.
jsonSee JSON options.{}Options related to the JSON report.
reportDirstring'analyze'Name of the directory that will contain the reports. Relative to Webpack output path.
reportFilenamestring'bundles''-client' and '-server' suffixes will be added if clientOnly is false.Name of the report without the extension.

HTML options

OptionValuesDefaultDescription
opentrue falsetrueWhen true, report opens automatically once generated.

JSON options

OptionValuesDefaultDescription
filterObject with the same structure than the JSON report to filter.Use true as value to keep a key.nullFilter to apply to the JSON report in order to keep only some keys.
0.6.8

6 months ago

0.6.7

1 year ago

0.6.6

1 year ago

0.6.5

2 years ago

0.6.3

2 years ago

0.6.4

2 years ago

0.6.2

2 years ago

0.5.0

3 years ago

0.6.1

3 years ago

0.6.0

3 years ago

0.5.1

3 years ago

0.4.2

3 years ago

0.4.1

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago