create-webpack-app
is a cli tool that enables developers to scaffold a new webpack project quickly. It provides developers with a flexible set of commands to increase speed when setting up a custom webpack project. webpack CLI addresses these needs by providing tools to improve the setup of custom webpack configuration.- It also supports several front-end frameworks and libraries like React, Vue, Svelte and pure project.
- Webpack Loader and Plugin scaffolding is also supported.
npx create-new-webpack-app [command] [options]
init
(also used by default when nothing specified) - project generatorloader
- loader generatorplugin
- plugin generator
To generate default template
npx create-new-webpack-app
To generate with default answers
npx create-new-webpack-app -f
or
npx create-new-webpack-app --force
To generate in a specified path
npx create-new-webpack-app [generation-path]
To generate a project according to a template
npx create-new-webpack-app --template <template-name>
Available templates:
default
(used by default when nothing specified) - generate a basic template for JS(TS)/CSS/HTML without any frameworksreact
vue
svelte
Available templates for loader
and plugin
generators:
default
(used by default when nothing specified) - generate bootstrap code