mirror of
https://github.com/strapi/strapi.git
synced 2025-08-06 07:50:02 +00:00
32 lines
753 B
Markdown
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.
|