packages/README.md
# webpack-cli Packages
## Table of content
- [Description](#description)
- [Packages](#packages)
- [Generic Installation](#generic-installation)
## Description
webpack CLI hosts several standalone packages apart from the main package that focuses on the solving respective smaller use cases.
This folder is the collection of those packages.
## Packages
1. [configtest](https://github.com/webpack/webpack-cli/tree/master/packages/configtest)
2. [generators](https://github.com/webpack/webpack-cli/tree/master/packages/generators)
3. [info](https://github.com/webpack/webpack-cli/tree/master/packages/info)
4. [serve](https://github.com/webpack/webpack-cli/tree/master/packages/serve)
5. [webpack-cli](https://github.com/webpack/webpack-cli/tree/master/packages/webpack-cli)
## Generic Installation
1. Standalone installation of packages
```shell
npm install @webpack-cli/<package>
```
2. Installation of respective `package` with `webpack-cli` [Recommended]
```shell
npm install webpack-cli @webpack-cli/<package>
```
---
[Back to webpack-cli](https://github.com/webpack/webpack-cli)