It is easy to make AcyOrt plugin, plugin usage needs to be registered in the configuration file config.yml
There are two plugin types, NPM
module and script
script
If the plugin is simple, you can put it in the scripts
folder and register it in config.yml
plugins:
- scriptA.js
- scriptB.js
NPM
The NPM plugin is the same as the normal node module and also needs to be registered in config.yml
plugins:
- moduleA
- moduleB
The plugin needs export
a function with acyort
variable
module.exports = (acyort) => {
const { store, version } = acyort
//...
}
The specific APIs you can check API
Contents