Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Webpack Cli | 2,475 | 82,529 | 85,905 | 2 days ago | 115 | June 13, 2022 | 41 | mit | JavaScript | |
Webpack's Command Line Interface | ||||||||||
Ngx Build Plus | 1,152 | 85 | 74 | 4 months ago | 77 | June 05, 2022 | 176 | TypeScript | ||
Extend the Angular CLI's default build behavior without ejecting, e. g. for Angular Elements | ||||||||||
Angular Librarian | 95 | 17 | 31 | 5 years ago | 28 | December 19, 2017 | 10 | mit | JavaScript | |
An Angular 2+ scaffolding setup for creating libraries | ||||||||||
Angular Cli Webpack | 70 | 3 | 1 | 4 years ago | 29 | October 25, 2018 | 4 | mit | TypeScript | |
Webpack configuration modifier for @angular/cli | ||||||||||
Preact Cli Decss | 2 | 5 years ago | mit | JavaScript | ||||||
Preact CLI configuration plugin for DeCss |
The official Command Line Interface of webpack
Webpack CLI provides the interface of options webpack uses in its configuration file. The CLI options override options passed in the configuration file.
The CLI provides a rich set of commands that helps you develop your application faster.
If you have followed the Getting Started guide of webpack then webpack CLI is already installed!
Otherwise npm install --save-dev webpack-cli
or yarn add webpack-cli --dev
will install it.
Get to know what are the available commands and arguments here.
We organize webpack CLI as a multi-package repository using lerna. The main CLI logic using options, resides in packages/webpack-cli
, while commands supported by the CLI, has dedicated subfolders in the folder packages
.
A summary of supported commands is described below.
Supporting developers is an important task for webpack CLI. Thus, webpack CLI provides different commands for many common tasks.
build|bundle|b [entries...] [options]
- Run webpack (default command, can be omitted).configtest|t [config-path]
- Validate a webpack configuration.help|h [command] [option]
- Display help for commands and options.init|create|new|c|n [generation-path] [options]
- Create a new webpack project.info|i [options]
- Returns information related to the local environment.plugin|p [output-path] [options]
- Initiate new plugin project.loader|l [output-path] [options]
- Initiate new loader project.serve|server|s [entries...] [options]
- Use webpack with a development server that provides live reloading.version|v [commands...]
- Output the version number of webpack
, webpack-cli
, webpack-dev-server
, and commands.watch|w [entries...] [options]
- Run webpack and watch for files changes.If you have followed the Getting Started guide of webpack, then webpack CLI is already installed!
Otherwise, you would need to install webpack CLI and the packages you want to use.
If you want to create a fresh webpack project, the init
command will guide you through setting up a project. Run the command as stated below.
npm i webpack-cli @webpack-cli/init
npx webpack-cli init
You will then be prompted for some questions about which features you want to use, such as scss
, typescript
, PWA
support or other features.
Exit Code | Description |
---|---|
0 |
Success |
1 |
Errors from webpack |
2 |
Configuration/options problem or an internal error |
The webpack family welcomes any contributor, small or big. We are happy to elaborate, guide you through the source code and find issues you might want to work on! To get started have a look at our contribution documentation.
If you like webpack, please consider donating through Open Collective to help us maintain it.
Guidelines to how the webpack organization expects you to behave is documented under Code of Conduct