Software Alternatives & Reviews

Webpack

Webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset. subtitle

Webpack Reviews and details

Screenshots and images

  • Webpack Landing page
    Landing page //
    2023-06-13

Badges & Trophies

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

Videos

Learn Webpack - Full Tutorial for Beginners

Core Concepts of Webpack

Learn Webpack Pt. 6: Cache Busting and Plugins

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 Webpack and what they use it for.
  • 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 / about 2 months ago
  • Webpack: The Web Module Bundler
    Thats all about Webpack Basic, there are lots of feature of webpack, You can check here: https://webpack.js.org/. - Source: dev.to / about 2 months ago
  • How to improve page load speed and response times: A comprehensive guide
    Many web pages use CSS and JavaScript files to handle various features and styles. Each file, however, requires a separate HTTP request, which can slow down page loading. Concatenation comes into play here. It involves combining multiple CSS or JavaScript files into a single file. As a result, pages load faster, reducing the time spent requesting individual files. Gulp, Grunt, and Webpack are some of the tools... - Source: dev.to / 2 months ago
  • Build a Vite 5 backend integration with Flask
    Once you build a simple Vite backend integration, try not to complicate Vite's configuration unless you absolutely must. Vite has become one of the most popular bundlers in the frontend space, but it wasn't the first and it certainly won't be the last. In my 7 years of building for the web, I've used Grunt, Gulp, Webpack, esbuild, and Parcel. Snowpack and Rome came-and-went before I ever had a chance to try them.... - Source: dev.to / 2 months ago
  • Top 20 Frontend Interview Questions With Answers
    Webpack is a module bundler, the main purpose of which is to bundle JavaScript files to make them usable in a browser. - Source: dev.to / 3 months ago
  • A step-by-step guide: How to create and publish an NPM package.
    NPM packages include a wide range of tools such as frameworks like Express or React, libraries like jQuery, and task runners such as Gulp, and Webpack. - Source: dev.to / 3 months ago
  • 🔥 FAST & FURIOUS WEBSITE 2024 🔥Tips & Links for performance optimization
    Another way to optimize is by reducing the size of CSS, JavaScript, and HTML files by removing comments, unnecessary spaces, and line breaks. Combine CSS and JavaScript files into a single file to reduce the number of server requests. This can be done using build tools like Webpack or Gulp. - Source: dev.to / 3 months ago
  • Splitting and Caching React Chunks
    A "chunk," as defined by Webpack, refers to the distinct components that collectively form a bundle. In the context of Webpack, a bundle serves as the entry point for organizing and encapsulating these individual chunks of code. - Source: dev.to / 4 months ago
  • 11 Ways to Optimize Your Website
    Webpack is one of the most popular options, with 63.6k stars on GitHub. It packs modules (JavaScript, CSS, images, and so on) into bundled assets that can be executed by the browser. For demonstration purposes, this is how you can install Webpack into your project:. - Source: dev.to / 6 months ago
  • Comparing Turbopack And Webpack
    Turbopack and Webpack are both JavaScript module bundlers used to build and package applications for the web. They both take in a set of input files and transform them into a single output bundle optimized for the web. - Source: dev.to / 6 months ago
  • Why is node_modules heavier than the universe? (No seriously, why is it so big?)
    But what is the output of a JS project? Its usually a single JS file called bundle.js or index.js, which contains the entire JS source code of the project in a highly condensed, minified manner. This is usually achieved using tools like Webpack. - Source: dev.to / 6 months ago
  • Server side Javascript in WebAssembly
    Webpack.config.js is the Webpack configuration file. When we build our app, Webpack is used to assemble it. - Source: dev.to / 6 months ago
  • Learn Next.js Server Side Rendering by building your own implementation
    To transpile our code, we will use Babel - a JavaScript compiler, that will generate files Node.js is happy with, and Webpack - a JavaScript bundler, that will bundle our code and automate the compilation step. - 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 / 7 months ago
  • Bun vs Node.js: Everything you need to know
    In the Node.js ecosystem, bundling is typically handled by third-party tools rather than Node.js itself. Some of the most popular bundlers in the Node.js world include Webpack, Rollup, and Parcel, offering features like code splitting, tree shaking, and hot module replacement. - Source: dev.to / 7 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 / 7 months ago
  • The Ascent of Node.js: How a runtime changed the Web
    Growth in Tooling: Tools like Babel allowed developers to use the latest JavaScript features without waiting for Node.js support, while Webpack streamlined bundling and module loading. - Source: dev.to / 8 months ago
  • Getting out of a rut
    Study these technologies for a frontend web developer role: React, Node.js, TypeScript, JavaScript, HTML, CSS, Webpack, and Jest. Source: 8 months ago
  • Add Authentication to Any Web Page in 10 Minutes
    To keep the demo simple, we do not use a package manager such as Webpack, we will retrieve the Authgear Web SDK from Authgear's CDN using IIFE(Immediately-invoked Function Expression) bundle. We can reference a script in our HTML directly:. - Source: dev.to / 9 months ago
  • Set Up Webpack 5 To Work With Static Files
    Assets: At the home page of webpack, you can see that assets, scripts, images and styles are treated as different things. Nevertheless, at the glossary of the website we read that an. - Source: dev.to / 11 months ago
  • Building a JSON Parser from scratch with JS 🤯
    A parser can have various applications in everyday life, and you probably use some parser daily. Babel, webpack, eslint, prettier, and jscodeshift. All of them, behind the scenes, run a parser that manipulates an Abstract Syntax Tree (AST) to do what you need - we'll talk about that later, don't worry. - Source: dev.to / 9 months ago

External sources with reviews and comparisons of Webpack

Rollup v. Webpack v. Parcel
Tool Prod Build Time One Prod Build Time Two Prod Build Time Three Prod Build Time Avg Parcel 738.509 s 35.364 s 35.592 s 269.82 avg s Rollup 0.712 s 0.665 s 0.714 s 0.697 avg s Webpack 3.636 s 3.805 s 4.305 s 3.915 avg s
If you’ve ever configured Webpack, Parcel will blow your mind!
document.body.className = document.body.className.replace(/(^|\s)is-noJs(\s|$)/, "$1is-js$2")HomepageHomepageJavascriptBecome a memberSign inGet startedIf you’ve ever configured Webpack, Parcel will blow your mind!And how to hit the ground running with Parcel.Ibrahim ButtBlockedUnblockFollowFollowingMar 16, 2018Click here to share this article on LinkedIn »Zero Configuration: Webpack Vs ParcelWebpackYes.We bring a...
First impressions with Parcel JS
From first impressions and experience, my take currently would be as follows. Webpack is generally going to be more flexible. It also places a bit more power in the developers hands to make bundling happen exactly as desired. That isn’t to say you shouldn’t use Parcel though. Where Parcel excels is the fact you don’t configure it. You will still need to configure plugins for it such as PostCSS and Babel but...
Parcel vs webpack - Jakob Lind
Webpack is the stable choice. You will not get fired for picking webpack. But you don’t get as much stuff for free such as optimized bundles, and code splitting.

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

Suggest an article

Generic Webpack discussion

Log in or Post with

This is an informative page about Webpack. 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.