strapi/docs/3.x.x/en/plugins/quick-start.md

32 lines
753 B
Markdown
Raw Normal View History

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