strapi/docs/3.x.x/en/plugins/quick-start.md
2017-10-12 13:00:07 +02:00

32 lines
753 B
Markdown

# Quick start
You can install and uninstall any plugin you want.
## Plugin installation
Look at the [CLI documentation](../cli/CLI.html#strapi-install) to install plugin.
### Basic usage
Considering you want to install a plugin named `content-manager` you can run the following command:
```bash
strapi install content-manager
```
> Note: This implies that this plugin is published on the npm registry as `strapi-plugin-content-manager`.
***
## Plugin uninstallation
Look at the [CLI documentation](../cli/CLI.html#strapi-uninstall) to install plugin.
### Basic usage
This command will simply removes the plugin folder.
```bash
strapi uninstall content-manager
```
Please refer to the [CLI documentation](../cli/CLI.md) for more information.