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

chunk-restriction-plugin

v1.2.0

Published

Chunk restriction plugin for webpack

Downloads

9

Readme

npm node deps size

chunk-restriction-plugin

Help you monitor your chunk size.

Getting Started

To begin, you'll need to install chunk-restriction-plugin:

npm install --save-dev chunk-restriction-plugin

Then add the plugin to your webpack config. For example:

webpack.config.js

const ChunkRestrictionPlugin = require('chunk-restriction-plugin');

module.exports = {
	plugins: [
		new ChunkRestrictionPlugin({
			restrictions: [
				{
					chunkName: 'vendor',
					jsSize: '200 KiB',
					logType: 'warning'
				},
				{
					chunkName: 'app',
					jsSize: '150 KiB',
					cssSize: '100 KiB',
					logType: 'error'
				}
			]
		})
	]
};

Options

| Name | Type | Required | Default | Description | | :---------------------------------------------: | :---------: | :------: | :-------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------- | | restrictions | {Array} | true | | Allows to define restriction on chunk's assets (js & css only) | | defaultLogType | {String} | false | warning | Allows to define default treatment for all the restrictions specified. | | logSafeChunks | {Boolean} | false | false | Allows to log information about chunks who are within the specified restriction. | | safeSizeDifference | {String} | false | | Allows to define difference between asset's size and its restriction, to be considered safe size. If specified, warns about chunks who does not meet this value. |

restrictions

Type: Array Default: null

Allows to define restrictions on multiple chunks based on its chunk name.

Restriction object properties:

| Property | Type | Description | | :-------------: | :--------: | :------------------------------------------------------------------------------------------------------------------------------- | | chunkName | {String} | Allows to define chunk name | | jsSize | {String} | Allows to define restriction on its JS asset. (in Bytes/KiB/MiB) | . | | cssSize | {String} | Allows to define restriction on its CSS asset. (in Bytes/KiB/MiB) | | logType | {String} | Allows to define severity of this restriction, overrides defaultLogType value. Possible values : "error" or "warning" |

jsSize :

Used to set the limit on the chunk's js asset size.

Possible units:

  • Byte/Bytes
  • Kb/KiB
  • Mb,MiB
cssSize :

Used to set the limit on the chunk's css asset size.

Possible units:

  • Byte/Bytes
  • Kb/KiB
  • Mb,MiB
logType :

Allows to specify severity of this restriction. Overrides defaultLogType. Its default value gets set on the basis of defaultLogType option value.

Possible values :

  • "error"
  • "warning"

defaultLogType

Type: String Default: warning

Allows to define default treatment (either treat it as warning or error) for all the restrictions specified.

Possible values :

  • "error"
  • "warning"

logSafeChunks

Type: Boolean Default: false

Enable logging information about all the chunks who are within the defined restriction.

safeSizeDifference

Type: String Default: ""

Allows to define difference between asset's size and its restriction, which will be considered as safe size for all the chunks. If specified, warns about chunks who does not satisfy this condition. Useful when you want to get information about chunk's asset, whose size is about to meet its restriction.

Possible units:

  • Byte/Bytes
  • Kb/KiB
  • Mb,MiB

License

MIT