A simple CLI tool that scaffolds a Node.js web application with Webpack and a predefined configuration. It allows you to specify your project directory, installs common dependencies, and sets up a ready-to-code structure in seconds.
- π Creates a project folder with a subfolder
src - βοΈ Adds a pre-configured
webpack.config.js - π¦ Installs useful dependencies like
babel-loader,css-loader, and Webpack-related packages - π§± Generates
package.jsonwith helpful scripts - π Bootstraps a minimal
index.jsentry file - π§ Works with Node.js and npm out-of-the-box
npx makeweb my-appnpm install -g makewebmakeweb <project-name>Resulting structure:
my-webapp/
βββ package.json
βββ webpack.config.js
βββ src/
β βββ index.js
webpackwebpack-cli
You can modify the scaffolded project as needed.
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production"
}You can extend the tool or modify the generated webpack.config.js, index.js, and package list to suit your stack (e.g., React, Vue, etc).
MIT License Β© 2025