Bundler Backend

Parcel Bundler: Streamlining JavaScript Application Bundling and Asset Management

Bundler Backend

Popular Bundlers : vite , parcel , webpacks

A bundler performs the following operations :

* HMR : Hot Module Replacement, means auto-reload on any change

* File Watcher Algorithm(c++) : This keep a check on the file for any change

* minifies the code

* Bundles things up

* Cleaning our code

* Super fast build Algorithm

* Image optimization

* Caching during development

* Compatible with the older version of the browser(BrowserList)

* Zero config Bundler

* transitive dependencies

* Compression

* Tree shaking( Removes the dead code From the App)

* Browser compatibility