Size Limit is a performance budget tool for JavaScript. It checks every commit on CI, calculates the real cost of your JS for end-users and throws an error if the cost exceeds the limit.

With GitHub action Size Limit will post bundle size changes as a comment in pull request discussion.

With --why, Size Limit can tell you why your library is of this size
and show the real cost of all your internal dependencies.
We are using Statoscope for this analysis.

file, webpack, time)
and 3 plugin presets for popular use cases (app, big-lib, small-lib).
A CLI tool finds plugins in package.json and loads the config.webpack plugin, Size Limit will bundle your JS files into
a single file. It is important to track dependencies and webpack polyfills.
It is also useful for small libraries with many small files and without
a bundler.webpack plugin creates an empty webpack project, adds your library
and looks for the bundle size difference.time plugin compares the current machine performance with that of
a low-priced Android devices to calculate the CPU throttling rate.time plugin runs headless Chrome (or desktop Chrome if it’s
available) to track the time a browser takes to compile and execute your JS.
Note that these measurements depend on available resources and might
be unstable. See here
for more details.Suitable for applications that have their own bundler and send the JS bundle directly to a client (without publishing it to npm). Think of a user-facing app or website, like an email client, a CRM, a landing page or a blog with interactive elements, using React/Vue/Svelte lib or vanilla JS.
Show instructions
sh
npm install --save-dev size-limit @size-limit/file
size-limit section and the size script to your package.json:diff
+ "size-limit": [
+ {
+ "path": "dist/app-*.js"
+ }
+ ],
"scripts": {
"build": "webpack ./webpack.config.js",
+ "size": "npm run build && size-limit",
"test": "vitest && eslint ."
}
```sh $ npm run size
Package size: 30.08 kB with all dependencies, minified and brotlied
```
package.json:diff
"size-limit": [
{
+ "limit": "35 kB",
"path": "dist/app-*.js"
}
],
size script to your test suite:diff
"scripts": {
"build": "webpack ./webpack.config.js",
"size": "npm run build && size-limit",
- "test": "vitest && eslint ."
+ "test": "vitest && eslint . && npm run size"
}
File size limit (in kB) is not the best way to describe your JS application cost for developers. Developers will compare the size of the JS bundle with the size of images. But browsers need much more time to parse 100 kB of JS than 100 kB of an image since JS compilers are very complex.
This is why Size Limit support time-based limit. It runs headless Chrome to track the time a browser takes to compile and execute your JS.
Show instructions
sh
npm install --save-dev size-limit @size-limit/preset-app
size-limit section and the size script to your package.json:diff
+ "size-limit": [
+ {
+ "path": "dist/app-*.js"
+ }
+ ],
"scripts": {
"build": "webpack ./webpack.config.js",
+ "size": "npm run build && size-limit",
"test": "vitest && eslint ."
}
```sh $ npm run size
Package size: 30.08 kB with all dependencies, minified and brotlied
Loading time: 602 ms on slow 3G
Running time: 214 ms on Snapdragon 410
Total time: 815 ms
```
package.json:diff
"size-limit": [
{
+ "limit": "1 s",
"path": "dist/app-*.js"
}
],
size script to your test suite:diff
"scripts": {
"build": "webpack ./webpack.config.js",
"size": "npm run build && size-limit",
- "test": "vitest && eslint ."
+ "test": "vitest && eslint . && npm run size"
}
JS libraries > 10 kB in size.
This preset includes headless Chrome, and will measure your lib’s execution time. You likely don’t need this overhead for a small 2 kB lib, but for larger ones the execution time is a more accurate and understandable metric that the size in bytes. Libraries like React are good examples for this preset.
Show instructions
sh
npm install --save-dev size-limit @size-limit/preset-big-lib
size-limit section and the size script to your package.json:diff
+ "size-limit": [
+ {
+ "path": "dist/react.production-*.js"
+ }
+ ],
"scripts": {
"build": "webpack ./scripts/rollup/build.js",
+ "size": "npm run build && size-limit",
"test": "vitest && eslint ."
}
import
option:diff
"size-limit": [
{
"path": "dist/react.production-*.js",
+ "import": "{ createComponent }"
}
],
```sh $ npm run size
Package size: 30.08 kB with all dependencies, minified and brotlied
Loading time: 602 ms on slow 3G
Running time: 214 ms on Snapdragon 410
Total time: 815 ms
```
package.json:diff
"size-limit": [
{
+ "limit": "1 s",
"path": "dist/react.production-*.js"
}
],
size script to your test suite:diff
"scripts": {
"build": "rollup ./scripts/rollup/build.js",
"size": "npm run build && size-limit",
- "test": "vitest && eslint ."
+ "test": "vitest && eslint . && npm run size"
}
```diff # Project Name
Short project description
* **Fast.** 10% faster than competitor.
JS libraries < 10 kB in size.
This preset will only measure the size, without the execution time, so it’s suitable for small libraries. If your library is larger, you likely want the Big Libraries preset above. Nano ID or Storeon are good examples for this preset.
Show instructions
size-limit:sh
npm install --save-dev size-limit @size-limit/preset-small-lib
size-limit section and the size script to your package.json:diff
+ "size-limit": [
+ {
+ "path": "index.js"
+ }
+ ],
"scripts": {
+ "size": "size-limit",
"test": "vitest && eslint ."
}
```sh $ npm run size
Package size: 177 B with all dependencies, minified and brotlied
```
--why for analysis:sh
npm run size -- --why
We use Statoscope as bundle analyzer.
package.json:diff
"size-limit": [
{
+ "limit": "9 kB",
"path": "index.js"
}
],
size script to your test suite:diff
"scripts": {
"size": "size-limit",
- "test": "vitest && eslint ."
+ "test": "vitest && eslint . && npm run size"
}
```diff # Project Name
Short project description
* **Fast.** 10% faster than competitor.
Size Limit has a GitHub action that comments and rejects pull requests based on Size Limit output.
.github/workflows/size-limit.ymlname: 'size'
on:
pull_request:
branches:
- master
jobs:
size:
runs-on: ubuntu-latest
env:
CI_JOB_NUMBER: 1
steps:
- uses: actions/checkout@v1
- uses: andresz1/size-limit-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Plugins or plugin presets will be loaded automatically from package.json.
For example, if you want to use @size-limit/webpack, you can just use
npm install --save-dev @size-limit/webpack, or you can use our preset
@size-limit/preset-big-lib.
Plugins:
@size-limit/file checks the size of files with Brotli (default), Gzip
or without compression.@size-limit/webpack adds your library to empty webpack project
and prepares bundle file for file plugin.@size-limit/webpack-why adds reports for webpack plugin
about your library is of this size to show the cost of all your
dependencies.@size-limit/webpack-css adds css support for webpack plugin.@size-limit/esbuild is like webpack plugin, but uses esbuild
to be faster and use less space in node_modules$ claude mcp add size-limit \
-- python -m otcore.mcp_server <graph>