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. (by webpack)
parcel
The zero configuration build tool for the web. 📦🚀 (by parcel-bundler)
webpack | parcel | |
---|---|---|
355 | 179 | |
64,846 | 43,527 | |
0.3% | 0.1% | |
9.9 | 9.5 | |
4 days ago | 10 days ago | |
JavaScript | JavaScript | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
webpack
Posts with mentions or reviews of webpack.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-11-29.
-
Documentation Release Notes - November 2024
The JS SDK now lets you opt out of specific modules you don't need and optimize the final bundle size. You can do that by using either of two popular JavaScript build tools: Rollup or Webpack.
-
Vue 3 Starter Template with Webpack, Tailwind CSS, and MerakUI - Quick Setup for Modern Web Apps
Webpack: A bundler for managing and optimizing module dependencies. Learn More
-
Top 10 JavaScript Libraries </>
Description: A module bundler that compiles JavaScript modules (along with assets like styles and images) into a single bundle or multiple bundles for optimized loading. It also supports hot reloading and code splitting. Use Cases: Bundling and optimizing JavaScript files for production, often used in larger web projects. Website: Webpack
-
Low-Level Documentation
Webpack official website
-
Dockerizing a Next.js Application using a Standalone Build
For its part, Next.js is the most popular React framework. As any other JavaScript application that uses a bundler such as webpack or Vite, for production a compiled version of the project is used. This is known as build. A build aims to provide the minimum amount of code needed for the application to function the same as it does in development. This ensures that JavaScript files are very lightweight, allowing the browser to fetch and interpret them in the shortest possible time to render the user interface or perform whatever tasks the application requires."
-
Why You Should TRUST Frameworks (And What It Takes to Build One From Scratch)
Webpack manages standalone applications.
-
What is New for Developers in Strapi 5: Top 10 Changes
Previously, Strapi used Webpack, a free and open-source module bundler for JavaScript.
-
Vite vs Webpack: Which Build Tool is Right for Your Project?
Webpack is a module bundler used to build modern JavaScript applications. It allows developers to compile modules and optimize assets in an application. A key feature of Webpack is that it is flexible in its customization, which enables it to be suitable for both small- and large-scale applications. You can install Webpack by running the command below:
-
Optimizing Web Performance: Best Practices and Techniques
Additional Resources Google Lighthouse WebPageTest TinyPNG Webpack Documentation Service Worker API
-
Digital asset management: The right time to scale your tech stack
If you're working with a modern web framework like React or Vue, you might be using something like Webpack or Rollup to bundle your assets. These tools are great, but a simpler approach to managing assets exists. This is where DAM can complement your existing build process.
parcel
Posts with mentions or reviews of parcel.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-11-17.
-
TypeScript 5.7 RC Released, New npm Alternative, The Future of JavaScript Frameworks and more
The AI Framework Debate
-
Bluetooth Low Energy based RGB LED Strip color control from a web browser and STM32
You will need a web bundler. You can use parcel.js
-
Connecting to BLE device and Reading Characteristics using JavaScript
To run this script, we need a web bundler like parcel js.
-
Tools and libraries widely used in micro frontend architectures!
Official Website
-
From Parcel to Vite: A short story of a 100K LOC migration
Someone even opened a discussion to ask if Parcel is dead. The official answer is no, Parcel is still alive, but it's in a we-are-working-on-a-large-refactor-and-no-time-for-minor-releases state. To us, it's like a "duck death": The latest version we can use is from more than a year ago, and we don't know when the next version will be released. It looks like it's dead, it acts like it's dead, so it's dead to us. Trust me, we tried.
-
Webpack Performance Tuning: Minimizing Build Times for Large Projects
While bundlers like Vite and Parcel present challenges due to our specific needs, two newer alternatives for Webpack show promise. Turbopack, the successor to Webpack created by Tobias Koppers, offers substantial performance enhancements. But, its current beta status and exclusivity for Next.js, limits its immediate usability for us.
-
Mako – fast, production-grade web bundler based on Rust
You forgot Parcel, which is working on v3 https://parceljs.org/
-
Let’s Get Hands-On with WordPress FSE Theme and Custom Blocks — Part 2
We are operating within a Node environment, so our first step is to initialize our project by creating a package.json where we define dependencies and commands. Personally, I use both webpack (on top of which @wordpress/scripts is built) and Parcel. While using two different build engines may lack elegance, Parcel’s user-friendly approach compensates for this compared to webpack. Its commands are straightforward, requiring no additional configuration files. However, if you prefer using webpack exclusively, you can achieve this with just a few additions to your webpack.config.js.
-
Create a typescript package with Parcel
Parcel is a fast and zero-configuration web application bundler designed to simplify the build process for modern web projects. It's not limited to web applications, and it can be used to build packages targeting the browser or Node.js.
-
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 from a couple of among all available alternatives: esbuild and parcel. Esbuild won. Specifically in our case, it proved to be more productive and customizable.
What are some alternatives?
When comparing webpack and parcel you can also consider the following projects:
craco - Create React App Configuration Override, an easy and comprehensible configuration layer for Create React App.
vite - Next generation frontend tooling. It's fast!
gulp - A toolkit to automate & enhance your workflow
esbuild - An extremely fast bundler for the web
Rollup - Next-generation ES module bundler
Next.js - The React Framework
react-app-rewired - Override create-react-app webpack configs without ejecting
Snowpack - ESM-powered frontend build tool. Instant, lightweight, unbundled development. ✌️ [Moved to: https://github.com/FredKSchott/snowpack]