webpack
craco
webpack | craco | |
---|---|---|
355 | 32 | |
64,846 | 7,441 | |
0.3% | 0.1% | |
9.9 | 6.4 | |
4 days ago | 11 months ago | |
JavaScript | TypeScript | |
MIT License | Apache License 2.0 |
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
-
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.
craco
-
Htmx and Web Components: A Perfect Match
I had some 'fun' figuring out how to deal with not going through create-react-app without doing a full eject, got something barely working ... and discovered https://craco.js.org/ already existed and did precisely what I'd part-implemented except better.
On the upside, by that point I knew the CRA codebase well enough to predict what it would do even in edge cases, and CRACO's implementation was immediately comprehensible, and none of my colleagues had to try and understand my half-arsed NIH version.
(avoiding being in any of this situation in the first place would likely have been preferable, but given where things were when I landed on the project in question that would've required a TARDIS)
-
Gzip Compression and IIS Setup on Windows Server for React Projects
If you initiated your React application using create-react-app, leverage @craco/craco to override your webpack configuration.
-
Build a web editor with react-monaco-editor
Ejecting a React app is a bad idea because our application will lose all the React configurations and will not benefit from the CRA updates. Some solutions for ejecting our application include using packages like react-app-rewired or rewire. You can also use CRACO to eject your React application, but it needs you to install additional plugins.
-
How are you building React applications? It's time to move on from Create React App
So, instead of entirely managing these configuration files, teams took to utilizing tools such as Craco to override configurations. These tools also come with their limitations: they were not updated as quickly as CRA, so there was always a lag in implementing new features, and they added an extra layer of complexity to existing tools through overrides and additional tools.
-
How to start a React Project in 2023
I am not much of a fan of CRA myself but I am very much glad that https://craco.js.org exists - so far it's handled my needs for tweaking CRA behaviour in situations where "eject" didn't seem like a good route to take.
Mostly tbh to stop the freaking thing spawning inotify watchers for the entire contents of node_modules - I don't mind having to do a manual restart when I've changed dependencies and I definitely -do- mind having it eat a shedload of my user's inotify kernel allocation. (I know you can up the allocation, that's not the point, why are you on my lawn? :)
- How can I make my CRA server start up quicker?
-
How to bypass mobile app review thanks to Capacitor, Ionic, and micro frontends 🤯
As I mentioned, in our case, the perfect tool for this job is CRACO. It will let us simply overwrite CRA’s configuration without ejecting.
-
Top packages for React Development
Create react app + Craco
-
Working with Ant Design in React - Customization
Or I could use Craco with Craco-less. Craco 6+ doesn't work with 5+ versions of react-scripts. I know I could use yarn instead of NPM which doesn't stop the installation of craco, but it can't be the solution. We can't scrap the project and restart. Further, Craco 7-alpha installs but then craco-less doesn't.
-
CRA vs Parcel
If you want to customize the webpack configuration, you either need to eject, or to work against the package (with yarn patch, forking react-scripts, or using CRACO which is the easiest). But none of them are officially maintained by the CRA team.
What are some alternatives?
vite - Next generation frontend tooling. It's fast!
react-app-rewired - Override create-react-app webpack configs without ejecting
esbuild - An extremely fast bundler for the web
Next.js - The React Framework
Rollup - Next-generation ES module bundler
create-react-app - Set up a modern web app by running one command.
gulp - A toolkit to automate & enhance your workflow
Tailwind CSS - A utility-first CSS framework for rapid UI development.
parcel - The zero configuration build tool for the web. 📦🚀
customize-cra - Override webpack configurations for create-react-app 2.0