lasso-optimizer-plugin
A build / compile time optimizer transform for Lasso JS. Gives Lasso JS some extra arms.
What is this?
- Lasso JS produces output bundles similar to the NODEJS common-js style syntax on the browser.
- This is one of the transform stage plugins for Lasso JS, that is applied on the final aggregated output of Lasso JS.
- It performs code transformations
Why is this needed?
- This plugin helps in further optimizing Lasso JS output bundles under certain conditions, while resolving modules & circular dependencies.
- Currrently, Lasso JS inlines the filepaths of modules like
$_mod;$_mod_gh_fe;$_mod_gh_fe;$_mod_gh_fe;
- While they provide a mirror representation of your projects file system, this tends to be of an overhead & bloat for projects.
- Further, these are resolved on the browser by Lasso Modules Client Side Run Time that performs a Node JS style module resolution.
- Inlined filepaths & the client side runtime take upto ~30KB in your ungzipped output bundle & upto 5KB in your gzipped response.
- As JS parse times are impacted by bundle size bloats, this helps optimize the bundle for it.
What does this do?
- This plugin applies an output transform on the code
- It attempts to resolve all filepaths and module dependencies at build time
- It transform modules into simple function expressions
$_mod;$_mod;$_mod_gh_fe;$_mod_gh_fe;$_mod_gh_fe;
to
var { // code here});;
- The
.remap
,.installed
,.main
,.run
,.builtin
,resolve
,require
,def
are all resolved at build / asset bundling phase. - On the browser, the bundle doesn't have to resolve these anymore.
- By doing this, it gets rid of the Lasso Modules Client Side Run Time & uses a miniature version of it.
Usage
This has to be applied as transform
in the Lasso config.