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

simple-build-report-webpack-plugin

v1.0.2

Published

Webpack plugin to simplify Webpack console output using logic extracted from react-dev-utils.

Downloads

456

Readme

Simple Build Report Webpack Plugin

This Webpack plugin bundles the FileSizeReport and formatWebpackMessages modules extracted from react-dev-utils, and packages them as a single plugin which can be used to instruct your webpack build to skip its normal stats output and log console output in a more human-oriented fashion.

Installation:

npm install --save-dev simple-build-report-webpack-plugin

Example usage:

const SimpleBuildReportPlugin = require( 'simple-build-report-webpack-plugin' );

// Within your webpack configuration:
module.exports = {
  plugins: [
    new SimpleBuildReportPlugin(),
  ],
};

The plugin does not take any options.

Output

This plugin takes Webpack output that may look like this by default:

webpack --config=test/test-config.js

Webpack Bundle Analyzer saved report to ~/test/build/prod/bundle-analyzer-report.html
Webpack Bundle Analyzer saved stats file to ~/test/build/prod/stats.json
asset prod.a7f2c32d4e157b20cfbf.js 1.36 KiB [emitted] [immutable] [minimized] (name: prod)
asset prod.1fe4a5eb8ea7f8db458d.css 109 bytes [emitted] [immutable] [minimized] (name: prod)
asset production-asset-manifest.json 94 bytes [compared for emit]
Entrypoint prod 1.46 KiB = prod.1fe4a5eb8ea7f8db458d.css 109 bytes prod.a7f2c32d4e157b20cfbf.js 1.36 KiB
orphan modules 3.24 KiB (javascript) 937 bytes (runtime) [orphan] 9 modules
cacheable modules 1.64 KiB (javascript) 138 bytes (css/mini-extract)
  ./test/src/index.js + 1 modules 1.64 KiB [built] [code generated]
  css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].oneOf[3].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].oneOf[3].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].oneOf[3].use[3]!./test/src/style.scss 138 bytes [built] [code generated]
production-test (webpack 5.72.0) compiled successfully in 987 ms

and reformats it to look like this:

webpack --config=test/test-config.js

Creating an optimized production build...

production-test compiled successfully.
Built 3 assets in 1.072s. File sizes after gzip:

  775 B  prod/prod.a7f2c32d4e157b20cfbf.js
  111 B  prod/prod.1fe4a5eb8ea7f8db458d.css
  production-asset-manifest.json

1 build compiled successfully