Make your apps smaller by adding post build compression to your create-react-app
build without configuration.
Compresses all html, css and javascript files in the build folder using brotli and gzip algorithms.
Feel free to create an issue for any problems you've had or if you want to request a new feature.
Install the package as a dev dependency:
npm install compress-create-react-app --save-dev
Edit your app's build script in package.json
:
"scripts": {
"start": "react-scripts start",
- "build": "react-scripts build",
+ "build": "react-scripts build && compress-cra",
"test": "react-scripts test",
"eject": "react-scripts eject"
}
You can provide an optional path to your build directory by adding -d
or --directory
argument to the command in your package.json
:
...
"build": "react-scripts build && compress-cra -d /path/to/build",
...
The default build path is /build
. The provided custom path should be a relative path from your project's root directory.
You can create an optional configuration file compress-cra.json
:
{
"algorithms": ["br", "gz"],
"filetypes": [
".html",
".js",
".css",
".svg",
".png",
".jpg",
".mp3",
".wav",
".tff",
".woff2",
".map"
],
"directory": "/build"
}
The default config values are as follows:
{
"filetypes": [".js", ".html", ".css"],
"directory": "/build",
"algorithms": ["br", "gz"],
"retainUncompressedFiles": true,
"asynchronousCompression": true
}
By default, compress-cra looks for compress-cra.json
in the project root but you may also provide a custom path to the config file by adding -c
or --config
argument to the command in your package.json
:
...
"build": "react-scripts build && compress-cra -c /path/to/configfile",
...
Compress-cra retains the original uncompressed files by default. If you want them to be deleted automatically, you can set retainUncompressedFiles
to false in your compress-cra.json
file:
{
"filetypes": [".js", ".html", ".css"],
"directory": "/build",
"algorithms": ["br", "gz"],
"retainUncompressedFiles": false
}
Compress-cra compresses files asynchronously by default. This makes the compression faster but won't work with too many files or if your system doesn't have enough memory available. You can use synchronous compression by setting asynchronousCompression
to false in your compress-cra.json
file:
{
"filetypes": [".js", ".html", ".css"],
"directory": "/build",
"algorithms": ["br", "gz"],
"asynchronousCompression": false
}
npm run build
The way to set up your server highly depends on the server you use.
Some useful tools to set up your server:
- express-static-gzip for
express
servers - CompressedStaticFiles for
asp.net core
servers
This is a small project that is currently maintained by one person. There are no strict contributing guidelines. If you're interested in contributing, see if there are any issues you could help with or post a new one to suggest a feature.
This app is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International license.