September 2022
Intermediate to advanced
410 pages
10h 7m
English
With Yarn in place to manage our third-party dependencies, we can look at a different set of problems. Problems like “How can my code consistently reference other code, when that code is in another one of my code files or in third-party modules?” and “How can I convert all of my disparate front-end assets into something that can be sent to and managed by a browser?”
All of the tools supported by jsbundling do this. These tools take our code that we have written, match up the external references, and bundle it into one (or more) files that can be sent to the browser.
We’re going to focus on esbuild. esbuild is written in Go rather than JavaScript and compiles to a native binary, which makes it very fast. The website suggests ...