What is esbuild?
9 June 2024 (Updated 7 July 2024)
On this page
In a nutshell
esbuild is a fast bundler for the web that comes with sensible defaults to handle common build requirements but which is also high-customisable.
esbuild is used by Vite during development and is much faster than alternatives like Webpack, Rollup or Parcel.

Getting started
Install:
npm i -D esbuild
Add a esbuild.mjs
file:
Run with node esbuild.mjs
and the entry point file app.tsx
will be bundled to a dist/app.tsx
file.
See this repo for example.
Links
Tagged:
JavaScript tooling
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment