A webpack.config.js for WordPress Projects

This page summarizes the projects mentioned and recommended in the original post on dev.to

Civic Auth - Auth in Less Than 5 Minutes
Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.
www.civic.com
featured
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
  1. 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.

    Webpack is a free and open-source module bundler based on Node.js for JavaScript. It is very "famous" in the modern javascript frameworks world, and although it was made primarily for JavaScript, it also can transform front-end assets such as CSS, and images if the corresponding loaders are included (this is the reason I will be using so many dependencies below).

  2. Civic Auth

    Auth in Less Than 5 Minutes. Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.

    Civic Auth logo
  3. base-wp-theme

    Base WP Theme is a starter WordPress theme to use as a base to build WordPress themes from scratch.

    In a WordPress project like this example theme, webpack avoids multiple requests, taking all our javascript and css files, and bundling all of them together in a minified file. It also increases my productivity, as, well, I don't need to manually compile and minify things.

  4. babel-loader

    📦 Babel loader for webpack

    babel-loader

  5. cross-env

    cross-env

  6. mini-css-extract-plugin

    Lightweight CSS extraction plugin

    mini-css-extract-plugin

  7. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • My first public React 17 Boilerplate (with Webpack 5, Tailwind 2)

    13 projects | dev.to | 2 Jan 2021
  • Webpack 4 devtool option does not work with webpack-dev-server

    3 projects | /r/codehunter | 13 Apr 2022
  • Webpack 5: The Next Generation Module Bundler

    1 project | dev.to | 2 Mar 2025
  • Discover the power of microfrontends: A revolution in frontend development

    1 project | dev.to | 24 Feb 2025
  • Simplify Browser Extension Deployment with GitHub Actions

    2 projects | dev.to | 1 Feb 2025