Bundle Size and Typing Improvements
Learn about the optimization of JavaScript bundle sizes in front-end apps using RxJS 7.
Exploring the bundle size improvements
Every front-end application needs a number of JavaScript files to run. These files are either the ones we’ve written ourselves or the external dependencies used to build the application, such as Moment.js, Lodash, or RxJS. A bundle is an output of a process that merges all these files into a few (if not single) files in the most optimized way possible.
One of the major approaches commonly used to improve front-end performance is reducing the JavaScript bundle size. The smaller the ...