Software Alternatives, Accelerators & Startups
Table of contents
  1. Videos
  2. Social Mentions
  3. Comments

esbuild

An extremely fast JavaScript bundler and minifier

esbuild Reviews and details

Screenshots and images

  • esbuild Landing page
    Landing page //
    2024-05-07

Badges

Promote esbuild. You can add any of these badges on your website.
SaaSHub badge
Show embed code
SaaSHub badge
Show embed code

Videos

ESBuild and SWC: Worth your time?

Let's talk about esbuild

Introduction to ESBuild tutorial for React / JavaScript and Typescript bundling. Bye bye Webpack

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about esbuild and what they use it for.
  • How to Start & Setup a React project in 2024 (7 Different Ways Based on Use Cases)
    Vite is currently the best build tool for bundling Front-end applications. It's so fast because it uses esbuild under the hood. Vite hot reload is the fastest among other development tools I have used. - Source: dev.to / 5 days ago
  • Rustify your JavaScript tooling
    A big part of my work revolves around JavaScript tooling, and as such it's important to keep an eye on the ecosystem and see where things are going. It's no secret that recently lots of projects are native-ying (??) parts of their codebase, or even rewriting them to native languages altogether. Esbuild is one of the first popular and successful examples of this, which was written in Go. Other examples are Rspack... - Source: dev.to / 6 days ago
  • Exploring Angular 17 and Beyond: Major Enhancements, Latest Updates, Migration Strategies, and Future Outlook
    Angular 17 introduces a significant performance boost by harnessing the capabilities of esbuild, a swift JavaScript bundler. This integration optimizes the build process, reducing build times and enhancing the overall performance of web applications developed with Angular. Developers can now expedite the application development cycle and deployment, leading to a more seamless development experience. - Source: dev.to / 10 days ago
  • How and why do we bundle zx?
    At first we wanted to just get rid of all the helper utilities. Keep only the kernel, but this would mean a loss of backward compatibility. We needed some efficient code processing instead with recomposition and tree-shaking. We needed a bundler. But which one? Our testing approach relies on targets, not sources. We rebuilt the project frequently, speed was critical requirement. In essence, we chose a solution... - Source: dev.to / 22 days ago
  • Use Notion as your CMS along with Next.js
    During my search for deploying Lambdas via GitHub actions, I came across a tutorial that utilized ncc for converting TypeScript and bundling. While ncc is effective, I discovered esbuild, which proved to be significantly faster and perfectly suited to my requirements. - Source: dev.to / about 2 months ago
  • ⏰ It’s time to talk about Import Map, Micro Frontend, and Nx Monorepo
    The advent of esbuild, the native support for ES Modules in browsers, the widespread adoption of import map, the emergence of tools like Native Federation, and the Nx ecosystem all combine to forge a flexible and well-maintained Micro Frontend Architecture. - Source: dev.to / 3 months ago
  • JS Toolbox 2024: Essential Picks for Modern Developers Series Overview
    In part 3 We jump into the world of bundlers, comparing webpack, esbuild, vite, and parcel 2. This section aims to guide developers through each bundler, focusing on their performance, compatibility, and ease of use. - Source: dev.to / 3 months ago
  • Build a Vite 5 backend integration with Flask
    Unlike Webpack, the Vite DevServer only compiles files when they are requested. It leverages ES module imports, which allow JS files to import other files without needing to bundle them together during development. When one file changes, only that file needs to be re-compiled, and the rest can remain unchanged. Project files are compiled with Rollup.js. Third-party dependencies in node_modules are pre-compiled... - Source: dev.to / 3 months ago
  • Effortless Function as a Service: A Simple Guide to Implementing it with Query
    The functions will bundle using esbuild. For that, it is required to install esbuild globally:. - Source: dev.to / 5 months ago
  • How to run TypeScript natively in Node.js with TSX
    TSX is the newest and most improved version of our ts-node, using ESBuild to transpile TS files to JS very quickly. The most interesting part is that TSX was developed to be a complete replacement for Node, so you can actually use TSX as a TypeScript REPL, if you install it globally with npm I -g tsx, just run tsx in your terminal and you can write TSX natively. But what's even cooler is that you can load TSX... - Source: dev.to / 6 months ago
  • Quick Summary of Angular 17
    Esbuild plus Vite is out of developer preview and enabled by default, yielding 67%, 87%, 80% speed improvements for build time, hybrid build time and hybrid serve time respectively. - Source: dev.to / 7 months ago
  • 11 Ways to Optimize Your Website
    Besides Webpack, there are many other popular web bundlers available, such as Parcel, Esbuild, Rollup, and more. They all have their own unique features and strengths, and you should make your decision based on the needs and requirements of your specific project. Please refer to their official websites for details. - Source: dev.to / 7 months ago
  • Run Bun Run! Building an AWS CDK Template with Bun
    The famous bundler is Webpack, but esbuild is the fastest one… Well, until Bun 🍔. - Source: dev.to / 8 months ago
  • Why use Vite when Bun is also a bundler? - Vite vs. Bun
    For production, Vite can use another bundler, esbuild, to speed up transpilation and minification, while it in production also uses the bundler Rollup to create the client side JS bundle, due to Rollup's flexible API. Even though Vite uses ESM in development environment, for speed. In the future Vite may use esbuild entirely for bundling instead of Rollup, due to the speed it would gain. - Source: dev.to / 8 months ago
  • Modern VS Code extension development: The basics
    The best way to accomplish this is through bundling. Microsoft recommends utilizing esbuild for bundling your VS Code extensions due to its speed and efficiency. Webpack is another good alternative. - Source: dev.to / 9 months ago
  • Date Picker: reactive Web Component in JavaScript
    To bundle our code in this example we're going to use esbuild, because it's fast and easy to use. - Source: dev.to / 9 months ago
  • PURISTA: Build with rimraf, esbuild, Turbo & git-cliff
    Esbuild - the rescue! No longer struggling with configs, file extensions or similar. - Source: dev.to / 9 months ago
  • Nx Console gets Lit
    Since Lit is just javascript files that don’t require a custom compiler or build tooling, we decided to use esbuild (via @nx/esbuild), which is written in Go and extremely fast. On the other hand, the old UI used the @angular-builders/custom-webpack:browser builder, which uses webpack under the hood. - Source: dev.to / 11 months ago
  • How environment variables are controlled for different environments with the same build?
    I typically handle this through my build script. For example I use esbuild, and my script includes this. Source: 12 months ago
  • How to Drag a Shape Along an SVG Ellipse Path: A Step-by-Step Guide
    I will use TypeScript with esbuild bundler, which is a fast and highly efficient builder for JavaScript and TypeScript. - Source: dev.to / 12 months ago
  • Building an Extension System on the Web
    Bundling extensions — in general, custom extension formats require custom bundling tools. Currently, as it’s still early, I put everything into a single JSON file with Node.js and esbuild bundler, but I’m exploring how to develop a custom Vite plugin for this purpose;. - Source: dev.to / 12 months ago

Do you know an article comparing esbuild to other products?
Suggest a link to a post with product alternatives.

Suggest an article

esbuild discussion

Log in or Post with

This is an informative page about esbuild. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.