Estimates the size of your files in different format (original, minified, gzipped, brotli).
Install code-size package globally with npm :
$ npm install -g @xelzs/code-size
Basic usage :
$ code-size -f test.css -gbm --language css
CodeSize | Version 1.0.0
Original size : 9.11 KB
Minified size : 7.16 KB
Gzipped size : 140 Bytes
Brotli size : 82 Bytes
Available options :
Usage: code-size [options]
Options:
-V, --version output the version number
-s, --source <code> specify raw source code
-f, --file <path> specify path to a file
-g, --gzip show gzipped size
-b, --brotli show brotli size
-m, --minify show minified size | !! Works only with supported language !!
-l, --language <language> specifies the language type. Supported: css, sass, scss, js (default: "css")
-h, --help display help for command
Install with npm :
$ npm install --save @xelzs/code-size
Get all sizes :
const {size} = require('code-size');
const data = size({
file: 'test.css',
gzip: true,
brotli: true,
minify: true,
language: 'css',
});
console.log(data);
// {
// original: '9.11 KB',
// minify: '7.16 KB',
// gzip: '140 Bytes',
// brotli: '82 Bytes',
// }
All options availables on command-line are also available here.
source
- Raw source codefile
- Path to a filegzip
- Boolean to enable the gzip estimationbrotli
- Boolean to enable the brotli estimationminify
- Boolean to enable the minify estimation. Language option requiredlanguage
- Specify the language type. Supported:css
,sass
,scss
,js
.
Changelog is accessible in the CHANGELOG.md file or in the release section.