Plugin
Packhouse Plugin
const Order = require('packhouse/plugins/Order')
const Packhouse = require('packhouse')
const packhouse = new Packhouse()
packhouse.plugin(Order)
console.log(packhouse.order()) // OrderDevelop
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
Last updated