tl;dr
There are a lot of tools to compile es2015 to es5. When choosing your compile stack you should be aware that tools that perform tree shaking and topological sorts of your code dependencies will result in smaller code bundles and faster js execution times.
With the recent es2015 boom 2016 javascript developers have a myriad of combinatorial choices when it comes to writing es2015 and compiling that code to es5 or lower. From closure compiler to browserify to uglify to webpack it is hard to know what is the best for compiling es2015 to run in browsers today.
Recently Malte Ubl pointed out a dramatic overall file size savings that the AMP team got when they switched from babel + browserify to closure compiler.
Malte's post got me thinking about how each of the tools available to developers have a slightly different approach when it comes to dealing with import statements and combining multiple files together. The following analysis aims to look at the cost across multiple tools when the goal is to deliver a single JS blob down to the user when writing vanilla non-annotated es2015.
To start with Let's take a look at this simple bit of code:
Above is vanilla es2015 code -- To run this code in a browser however we first have to convert it to es5 using one of several options. Initially let's try babel + browserify, closure compiler, and rollup, and then compare the output.
Compiling this example with babel + browserify results in the following bundle:
Now compare that result to using closure compiler: (using no optimization flags)
Finally looking at rollup:
rollup simply dead code eliminates everything :)
As you can see, you are paying a fairly high cost per module when using a tool like browserify, as compared to closure or rollup -- This simply put, boils down to overhead per module which increases the overall size of your bundle.
For the next step in our analysis I will be using the vanilla es6 TodoMVC example from here https://github.com/tastejs/todomvc/tree/master/examples/vanilla-es6, For each of the tools that I measured against, I compiled the source code, and then verified that the app was working before taking any measurements.
- File bundle size
- Gzip size
- Tool run time (gathered by
time make <tool>
) - *js execution time on page load (gathered by big-rig)
- *js compile time (gathered by big-rig)
As a side note, the numbers that I gathered from the compile time metric and execution time were all within the margin of error of one another. so I will not be using those numbers to draw a hypothesis -- but the results are included at the end of the post.
Ignoring the outlier of traceur, people should heavily consider using a tool that does tree shaking (removal of unused code) and topological sorting of dependencies (ordering the dependencies so that you do not have to worry about import wrapping code). The difference between the final output size between a tool like browserify and rollup can well over 20%, even for a trivial app like TodoMVC.
Tools | File Size (bytes) | gzip size (bytes) | brotli size (bytes) | js execution time (ms) | js compile time (ms) | tool run time (s) |
---|---|---|---|---|---|---|
closure | 7847 | 2890 | 2529 | 53.15 | 9.56 | 7.938 |
[email protected] (babel + rollup + uglify) | 11049 | 3393 | 2935 | 55.46 | 8.05 | 2.978 |
typescript + webpack | 11128 | 3245 | 2827 | 56.57 | 8.45 | 4.636 |
babel + rollup + uglify | 11423 | 3440 | 2989 | 50.81 | 7.26 | 2.396 |
typescript + browserify + uglify | 11442 | 3415 | 2976 | 48.49 | 8.61 | 2.724 |
rollup-plugin-babel + uglify | 11444 | 3447 | 2997 | 49.50 | 7.85 | 2.806 |
webpack@2 + babel + uglify | 13346 | 3632 | 3157 | 51.28 | 8.35 | 2.007 |
webpack + babel + uglify | 14130 | 3796 | 3307 | 51.28 | 9.59 | 2.045 |
babel + browserify + uglify | 14409 | 3915 | 3422 | 53.37 | 8.85 | 4.947 |
babelify + uglify | 14409 | 3915 | 3422 | 43.96 | 8.25 | 3.697 |
traceur + browserify + uglify | 68699 | 18000 | 15945 | 66.60 | 7.95 | 3.085 |
make <babel | closure | typescript | rollup | traceur | ...>
make <example-name>
make size
- open demo in chrome... save timeline trace
npm i -g bigrig
bigrig <path-to-trace> --pp
cd src && python -m SimpleHTTPServer
visit localhost:8000/