Ugo Finnendahl
c22b2b8ccd
|
2 months ago | |
---|---|---|
.. | ||
src | 2 months ago | |
.editorconfig | 2 months ago | |
.gitattributes | 2 months ago | |
.gitignore | 2 months ago | |
LICENSE.md | 2 months ago | |
README.md | 2 months ago | |
SECURITY.md | 2 months ago | |
composer.json | 2 months ago | |
index.css | 2 months ago | |
index.js | 2 months ago | |
index.php | 2 months ago | |
package-lock.json | 2 months ago | |
package.json | 2 months ago |
README.md
Kirby Pluginkit: Example plugin for Kirby
Variant "Panel plugin setup"
This is a boilerplate for a Kirby Panel plugin that can be installed via all three supported installation methods.
You can find a list of Pluginkit variants on the master
branch.
How to use the Pluginkit
- Fork this repository
- Change the plugin name and description in the
composer.json
- Change the plugin name in the
index.php
andsrc/index.js
- Change the license if you don't want to publish under MIT
- Add your plugin code to the
index.php
andsrc/index.js
- Update this
README
with instructions for your plugin
Install the development and build setup
We use kirbyup for the development and build setup.
You can start developing directly. kirbyup will be fetched remotely with your first npm run
command, which may take a short amount of time.
Development
You can start the dev process with:
npm run dev
This will automatically update the index.js
and index.css
of your plugin as soon as you make changes.
Reload the Panel to see your code changes reflected.
With kirbyup 2.0.0+ and Kirby 3.7.4+ you can alternatively use hot module reloading (HMR):
npm run serve
This will start a development server that updates the page as soon as you make changes. Some updates are instant, like CSS or Vue template changes, others require a reload of the page, which happens automatically.
[!NOTE] The live reload functionality requires top level await, which is only supported in modern browsers. If you're developing in older browsers, use
npm run dev
and reload the page manually to see changes.
Production
As soon as you are happy with your plugin, you should build the final version with:
npm run build
This will automatically create a minified and optimized version of your index.js
and index.css
which you can ship with your plugin.
We have a tutorial on how to build your own plugin based on the Pluginkit in the Kirby documentation.
Build reproducibility
While kirbyup will stay backwards compatible, exact build reproducibility may be of importance to you. If so, we recommend to target a specific package version, rather than using npx:
{
"scripts": {
"dev": "kirbyup src/index.js --watch",
"build": "kirbyup src/index.js"
},
"devDependencies": {
"kirbyup": "^3.1.0"
}
}
What follows is an example README for your plugin.
Installation
Download
Download and copy this repository to /site/plugins/{{ plugin-name }}
.
Git submodule
git submodule add https://github.com/{{ your-name }}/{{ plugin-name }}.git site/plugins/{{ plugin-name }}
Composer
composer require {{ your-name }}/{{ plugin-name }}
Setup
Additional instructions on how to configure the plugin (e.g. blueprint setup, config options, etc.)
Options
Document the options and APIs that this plugin offers
Development
Add instructions on how to help working on the plugin (e.g. npm setup, Composer dev dependencies, etc.)
License
MIT