SaaSHub helps you find the best software and product alternatives Learn more →
Esbuild Alternatives
Similar projects and alternatives to esbuild
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
-
-
-
-
-
-
-
-
-
-
nx
The Monorepo Platform that amplifies both developers and AI agents. Nx optimizes your builds, scales your CI, and fixes failed PRs automatically. Ship in half the time.
-
webpack
A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.
-
-
-
-
-
Snowpack
Discontinued ESM-powered frontend build tool. Instant, lightweight, unbundled development. ✌️ [Moved to: https://github.com/FredKSchott/snowpack] (by withastro)
-
-
esbuild discussion
esbuild reviews and mentions
-
What Happens When You Run `npm run dev`
Vite uses esbuild written in Go, absurdly fast to pre-process your node_modules dependencies.
-
Creating Your First Lambda Function
The Metadata section tells SAM how to build your TypeScript code. Instead of running tsc and bundling manually, SAM uses esbuild — a JavaScript/TypeScript bundler. It compiles your TypeScript, minifies the output, generates sourcemaps for debugging, and packages it all up. You don't need to install esbuild yourself — SAM handles it during sam build.
-
Hugo's New CSS Powers
Good call out from that thread is he's trying to get a small change in esbuild added to help with this as well.
https://github.com/evanw/esbuild/issues/4419
-
Claude Code's Source Didn't Leak. It Was Already Public for Years.
The reality is simple: minification was never security. It's a size optimization that bundlers like esbuild, Webpack, and Rollup do by default. Variable renaming slows down human readers but LLMs read minified code like you read formatted code.
-
Detecting file changes on macOS with kqueue
Very nice :)
For a while I've been annoyed that esbuild, which is written in Go, eschews these APIs to detect changes in watch mode and instead continually polls the filesystem: https://github.com/evanw/esbuild/issues/1527#issuecomment-90.... It actually consumes quite a bit of battery, so I might fork it and apply this post's implementation!
-
How to Minify JavaScript Without Build Tools
esbuild is written in Go and is 10-100x faster than JavaScript-based minifiers:
-
Why I Built My Own AWS Deployment Tool
esbuild — fast JavaScript/TypeScript bundler
- Vite vs Webpack 5 vs esbuild vs Turbopack: выбор бандлера в 2026
-
Bun has been acquired by Anthropic
esbuild is still a Go app today: https://github.com/evanw/esbuild
The first hints of what become Bun were when Jared experimented at porting that to Zig.
-
Anatomy of a package: @vanilla-extract/css
In the following sections, we will explore how does it do what it does using one such tool called esbuild
-
A note from our sponsor - SaaSHub
www.saashub.com | 9 Jun 2026
Stats
evanw/esbuild is an open source project licensed under MIT License which is an OSI approved license.
The primary programming language of esbuild is Go.