npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@massive/bitbucket-webpack-insights

v1.0.8

Published

Generates Webpack Size insights for Bitbucket Server

Downloads

38

Readme

Webpack Size Insights

"Code Insights" is a powerful feature of Bitbucket Server 5.15+ allowing external tools to attach reports to commits. These reports are then presented in the Pull Request interface.

This tool calculates insights related to Webpack builds:

  • total size of JavaScript, CSS and other medias,
  • per-chunk size of JavaScript and CSS.

Note: there is no assumption on the CI environment; the git hash is resolved as git rev-parse HEAD.

Usage

  • Install the npm module @massive/bitbucket-webpack-insights as dev dependency,
  • Set static configuration in your package.json (see below),
  • Set build-specific configuration in environment variables (see below),
  • Execute bb-webpack-insights

Configuration

Webpack

Your Webpack build must produce a stats.json with at least the assets and namedChunkGroups sections:

// minimum required `stats.json` configuration
new StatsPlugin({
    fields: ['assets', 'namedChunkGroups']
})

Authentication

The tool needs READ access to the target Bitbucket repository. Access should be provided through environment variables:

  • Either a Personal Access Token: BITBUCKET_TOKEN,
  • or BITBUCKET_USER (email) and BITBUCKET_PSWD.

Options

Configuration can be set in package.json or/and environment variables (who take precedence).

In package.json, add a webpack_insights object:

{
    "name": "your-project",
    "dependencies": {...},
    "webpack_insights": {
        ...
    }
}

Note: when used in conjunction with bitbucket-changelog, configuration can be added to the changelog object instead.

Here are the options (package.json key name / environment variable name):

  • bitbucket / WPINSIGHTS_BITBUCKET: base URL of your Bitbucket/Stash server,
  • projectKey / WPINSIGHTS_PROJECT: Bitbucket project key,
  • repositoryKey / WPINSIGHTS_REPOSITORY: Bitbucket repository key,
  • reportKey / WPINSIGHTS_KEY: (default: webpack_insights) a key for the report (use to discriminate multiple builds of the same repo),
  • title / WPINSIGHTS_TITLE: (default: Webpack Size) title of the report,
  • stats / WPINSIGHTS_STATS: (default: ./stats.json) Webpack stats output,
  • exclude / WPINSIGHTS_EXCLUDE: array / comma-separated list of chunks to exclude from calculations,
  • link / WPINSIGHTS_LINK: (optional) link to an external resource

Suggestion for the link

Create an artefact with bundle-report.html produced by BundleAnalyzerPlugin that you can link from this Webpack size summary.