Gathering detailed insights and metrics for babel-plugin-minify-guarded-expressions
Gathering detailed insights and metrics for babel-plugin-minify-guarded-expressions
Gathering detailed insights and metrics for babel-plugin-minify-guarded-expressions
Gathering detailed insights and metrics for babel-plugin-minify-guarded-expressions
@babel/helper-create-regexp-features-plugin
Compile ESNext Regular Expressions to ES5
@babel/plugin-transform-named-capturing-groups-regex
Compile regular expressions using named groups to ES5.
@babel/plugin-transform-dotall-regex
Compile regular expressions using the `s` (`dotAll`) flag to ES5.
@babel/plugin-transform-dynamic-import
Transform import() expressions
✂️ An ES6+ aware minifier based on the Babel toolchain (beta)
npm install babel-plugin-minify-guarded-expressions
babel-minify@0.5.1
Published on 15 Aug 2019
babel-minify@0.5.0
Published on 24 Sept 2018
babel-minify@0.4.3
Published on 14 May 2018
babel-minify@0.4.2
Published on 14 May 2018
babel-minify@0.4.1
Published on 03 May 2018
babel-minify@0.4.0
Published on 08 Apr 2018
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
4,395 Stars
999 Commits
225 Forks
56 Watching
26 Branches
93 Contributors
Updated on 25 Nov 2024
JavaScript (93.71%)
Python (5.93%)
Shell (0.35%)
Cumulative downloads
Total Downloads
Last day
-2%
92,609
Compared to previous day
Last week
-1.5%
499,212
Compared to previous week
Last month
32%
1,995,273
Compared to previous month
Last year
-28.4%
21,097,846
Compared to previous year
An ES6+ aware minifier based on the Babel toolchain.
babel-minify
is consumable via API, CLI, or Babel preset. Try it online - babeljs.io/replHistorical note: babel-minify was renamed from babili.
babel-minify
is an experimental project that attempts to use Babel's toolchain (for compilation) to do something in a similar vein, minification. It's currently in 0.x, so we don't recommend using it in production.
Checkout our CONTRIBUTING.md if you want to help out!
Current tools don't support targeting the latest version of ECMAScript. (yet)
Check out our blog post for more info!
1// Example ES2015 Code 2class Mangler { 3 constructor(program) { 4 this.program = program; 5 } 6} 7new Mangler(); // without this it would just output nothing since Mangler isn't used
Before
1// ES2015+ code -> Babel -> BabelMinify/Uglify -> Minified ES5 Code 2var a=function a(b){_classCallCheck(this,a),this.program=b};new a;
After
1// ES2015+ code -> BabelMinify -> Minified ES2015+ Code 2class a{constructor(b){this.program=b}}new a;
Package | Version | Dependencies |
---|---|---|
babel-minify |
1npm install babel-minify --save-dev
1minify src -d lib
Package | Version | Dependencies |
---|---|---|
babel-preset-minify |
1npm install babel-preset-minify --save-dev
note: minify is still in beta, so we don't recommend using it for production code but rather the production environment.
When testing, it's recommended to run minifiers for production so less code is sent to end-users vs. in development where it can be an issue for readability when debugging. Check out the env docs for more help.
Options specific to a certain environment are merged into and overwrite non-env specific options.
.babelrc
:
{
"presets": ["es2015"],
"env": {
"production": {
"presets": ["minify"]
}
}
}
Then you'll need to set the env variable which could be something like BABEL_ENV=production npm run build
The minify
repo is comprised of many npm packages. It is a lerna monorepo similar to babel itself.
The npm package babel-preset-minify
is at the path packages/babel-preset-minify
Normally you wouldn't be consuming the plugins directly since the preset is available.
Add to your .babelrc
's plugins array.
{
"plugins": ["babel-plugin-transform-undefined-to-void"]
}
Package | Version | Dependencies |
---|---|---|
babel-plugin-transform-inline-environment-variables | ||
babel-plugin-transform-node-env-inline | ||
babel-plugin-transform-remove-console | ||
babel-plugin-transform-remove-debugger |
Bootstrap:
npm run bootstrap
Build:
npm run build
Running the benchmarks:
./scripts/benchmark.js [file...]
- defaults to a few packages fetched from unpkg.com and is defined in benchmark.js.
Note: All Input sources are ES5.
Benchmark Results for react.js:
Input Size: 54.79KB
Input Size (gzip): 15.11KB
minifier | output raw | raw win | gzip output | gzip win | parse time (ms) | minify time (ms) |
---|---|---|---|---|---|---|
babel-minify | 15.97KB | 71% | 6.08KB | 60% | 1.00 | 1039.06 |
terser | 15.65KB | 71% | 5.98KB | 60% | 0.93 | 532.19 |
uglify | 15.6KB | 72% | 6KB | 60% | 1.09 | 463.69 |
closure-compiler | 15.74KB | 71% | 6.04KB | 60% | 1.22 | 2361.41 |
closure-compiler-js | 18.21KB | 67% | 6.73KB | 55% | 1.08 | 3381.47 |
Benchmark Results for vue.js:
Input Size: 282.52KB
Input Size (gzip): 77.52KB
minifier | output raw | raw win | gzip output | gzip win | parse time (ms) | minify time (ms) |
---|---|---|---|---|---|---|
babel-minify | 104.21KB | 63% | 38.71KB | 50% | 6.09 | 3538.30 |
terser | 103.12KB | 63% | 37.92KB | 51% | 6.42 | 1680.85 |
uglify | 102.71KB | 64% | 38.08KB | 51% | 6.59 | 1662.50 |
closure-compiler | 101.93KB | 64% | 38.6KB | 50% | 10.41 | 4413.06 |
closure-compiler-js | 105.18KB | 63% | 39.5KB | 49% | 6.79 | 12082.80 |
Benchmark Results for lodash.js:
Input Size: 527.18KB
Input Size (gzip): 94.04KB
minifier | output raw | raw win | gzip output | gzip win | parse time (ms) | minify time (ms) |
---|---|---|---|---|---|---|
babel-minify | 69.59KB | 87% | 24.37KB | 74% | 5.38 | 2587.27 |
terser | 68.66KB | 87% | 24.31KB | 74% | 6.41 | 1913.43 |
uglify | 68.15KB | 87% | 24.05KB | 74% | 5.89 | 2075.71 |
closure-compiler | 71.05KB | 87% | 24.19KB | 74% | 6.24 | 4119.43 |
closure-compiler-js | 73.51KB | 86% | 24.94KB | 73% | 5.17 | 9650.59 |
Benchmark Results for three.js:
Input Size: 1.05MB
Input Size (gzip): 212.43KB
minifier | output raw | raw win | gzip output | gzip win | parse time (ms) | minify time (ms) |
---|---|---|---|---|---|---|
babel-minify | 535.88KB | 50% | 134.66KB | 37% | 27.24 | 9988.57 |
terser | 536.16KB | 50% | 132.78KB | 37% | 28.39 | 3919.34 |
uglify | 533.42KB | 50% | 133.21KB | 37% | 26.15 | 4025.20 |
closure-compiler | 532.44KB | 51% | 134.41KB | 37% | 29.96 | 9029.19 |
closure-compiler-js | 543.08KB | 50% | 136.3KB | 36% | 24.36 | 95743.77 |
Babel Minify is best at targeting latest browsers (with full ES6+ support) but can also be used with the usual Babel es2015 preset to transpile down the code first.
Amjad Masad | Boopathi Rajaa | Juriy Zaytsev | Henry Zhu | Vignesh Shanmugam |
@amasad | @boopathi | @kangax | @hzoo | @vigneshshanmugam |
@amasad | @heisenbugger | @kangax | @left_pad | @_vigneshh |
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
Found 10/24 approved changesets -- score normalized to 4
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
81 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More