Order是我們提供的套件
,也是一個簡單的開發範例。
const Order = require('packhouse/plugins/Order')
const Packhouse = require('packhouse')
const packhouse = new Packhouse()
packhouse.plugin(Order)
console.log(packhouse.order()) // Order
class MyPlugin {
constructor(packhouse) {
packhouse.hello = function() {
console.log(`hello world.`)
}
}
}
const Packhouse = require('packhouse')
const packhouse = new Packhouse()
packhouse.plugin(MyPlugin)
packhouse.hello() // hello world.
Repeat Registration Of Plugins
packhouse.plugin(Order)
// 以下行為不會觸發任何事
packhouse.plugin(Order)
const group = {
install(group, options, packhouse) {
packhouse.plugin(require('packhouse/plugins/Order'))
}
}