mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-18 00:25:07 +00:00
25 lines
438 B
Markdown
25 lines
438 B
Markdown
# Plugin Architecture
|
|
|
|
A GitBook plugin is a NPM package that follow a defined convention.
|
|
|
|
`gitbook-plugin` is a command line utility to help you create, test and release plugins.
|
|
|
|
### Bootstrap your first plugin
|
|
|
|
Install `gitbook-plugin` from NPM:
|
|
|
|
```
|
|
$ npm install gitbook-plugin -g
|
|
```
|
|
|
|
Then create your plugin using:
|
|
|
|
```
|
|
$ gitbook-plugin create
|
|
```
|
|
|
|
It will prompt you to enter a name and a description.
|
|
|
|
|
|
### Publish your plugin
|