craco
webpack
craco | webpack | |
---|---|---|
32 | 367 | |
7,444 | 65,197 | |
0.0% | 0.2% | |
6.4 | 9.8 | |
over 1 year ago | 5 days ago | |
TypeScript | JavaScript | |
Apache License 2.0 | MIT License |
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.
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.
webpack
-
Dark Souls CRUD Arena - The Prisoner Approach
to then serve to the browser. If I was using something like Vite or Webpack I would have gotten this handling for free.
-
Top 20 Front-End Development Tools to Use in 2025
17. Webpack
-
You Don’t Know JS Yet: My Weekly Journey Through JavaScript Mastery
The JS code gets transpiled by tools like Babel, then bundled (often by Webpack) into a single or few files (like bundle.js). This optimizes the website to load faster, as the browser can fetch everything from one file instead of multiple.
-
Webpack 5: The Next Generation Module Bundler
Remember that Webpack is highly configurable, and this article only scratches the surface of what's possible. Be sure to check the official Webpack documentation for more detailed information and advanced configurations.
-
30 Best Free Tools for Frontend Developers in 2025
Website: webpack.js.org
-
Discover the power of microfrontends: A revolution in frontend development
With Webpack 5, a new feature has helped microfrontends proliferate: Module Federation. Module Federation allows JavaScript code to be loaded — synchronously or asynchronously — at runtime.
-
Simplify Browser Extension Deployment with GitHub Actions
Firefox: Extensions utilizing bundlers like webpack or Extension.js require zipped source code. Additionally, Firefox mandates submissions in Cross-Platform Install (XPI) format.
-
Which JavaScript Bundler Is Right for You? A Deep Dive into Webpack, Vite, and More
Webpack is one of the oldest and most widely used bundlers in web development, created by Tobias Koppers in 2012. It gained popularity after Browserify and RequireJS and has become the go-to choice for managing complex projects.
-
Custom builder for Angular: My way
Micro-frontend has always aroused my curiosity: I wanted to understand how they work, how to build them, what their pros and cons are. In 2018, inspired by this topic, I tried to build something similar to single-spa in one of the pet projects. At that time, there was no Webpack Module Federation (WMF), and Webpack itself seemed inconvenient. The choice fell on ESBuild and importmap. Browser support for importmap at the time was mostly on paper or with special flags in browsers. For this reason, I used a polyfill. But, surprisingly, everything worked and even in several projects.
-
What is Evan You doing by creating VoidZero, and what are the issues with JS toolchains?
Packagers are the ones we most frequently come into contact with, such as Webpack Vite and Parcel. The latter may not be commonly used, but it is also a well-established tool.
What are some alternatives?
react-app-rewired - Override create-react-app webpack configs without ejecting
vite - Next generation frontend tooling. It's fast!
create-react-app - Set up a modern web app by running one command.
gulp - A toolkit to automate & enhance your workflow
Gatsby - The best React-based framework with performance, scalability and security built in.
Rollup - Next-generation ES module bundler