Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nuxt-bundle-analysis

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuxt-bundle-analysis

Analyzes each PR's impact on your nuxt.js app's bundle size and displays it using a comment.

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
229
decreased by-22.64%
Maintainers
1
Weekly downloads
 
Created
Source

Nuxt.js Bundle Analysis Scripts

Analyzes each PR's impact on your nuxt.js app's bundle size and displays it using a comment. By combining this script with a github actions, it is possible to send bundle size measurement results to Pull Request. (Nuxt3 is not supported)

⚠️ It is not an npm package, so please copy it to your own project.

image

Usage

  1. Setting nuxt.config.js and Build. Set nuxt.config.js as follows so that bundle statistics are output. After configuration and build, .nuxt/stats.client.json will be output.
export default {
  build: {
    analyze: {
      generateStatsFile: true,
      analyzeMode: "disabled",
      openAnalyzer: false,
    },
  },
};
  1. Setting package.json This script uses the settings described in package.json. nuxtBundleAnalysis See here for options.
"devDependencies": {},
"nuxtBundleAnalysis": {
"statsFile": ".nuxt/stats/client.json"
}
  1. Run report.js or report.ts report.js or report.ts calculates bundle size based on statsFile and outputs data for comparison.(analyze/__bundle_analysis.json is generated.)

  2. Create __bundle_analysis.json as a basis for comparison. Create __bundle.analysis.json in analyze/base/bundle for comparison.

  3. Run compare.js or compare.ts compare.js or compare.ts compares analyze/base/bundle/__bundle_analysis.json and analyze/__bundle_analysis.json and generates a text file containing the difference in bundle size The following is an example of the process.(analyze/__bundle_analysis_comment.txt is generated.)

Options

propertytypedescriptiondefault
statsFilestringThe path to the json file containing bundle statistics..nuxt/stats/client.json
buildOutputDirectorystringDirectory generated by nuxt build.nuxt

GitHub Actions Sample

actions-template

Keywords

FAQs

Package last updated on 04 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc