๐ฃ๐ Mimikrook: Awaitable hooks for seamless code enhancement! ๐ช๐ก Boost your development with the power of hooks. ๐
Using yarn:
# nyxi
nyxi mimikrook
# pnpm
pnpm add mimikrook
# npm
npm i mimikrook
# yarn
yarn add mimikrook
Method
import { createHooks } from 'mimikrook'
// Create a mimikrook instance
const hooks = createHooks()
// Hook on 'hello'
hooks.hook('hello', () => { console.log('Hello World') })
// Call 'hello' hook
hooks.callHook('hello')
Method
import { Mimikrook } from 'mimikrook'
export default class FooLib extends Mimikrook {
constructor() {
// Call to parent to initialize
super()
// Initialize Mimikrook with custom logger
// super(consola)
}
async someFunction() {
// Call and wait for `hook1` hooks (if any) sequential
await this.callHook('hook1')
}
}
๐ Inside plugins, register for any hook:
const lib = new FooLib()
// Register a handler for `hook2`
lib.hook('hook2', async () => { /* ... */ })
// Register multiply handlers at once
lib.addHooks({
hook1: async () => { /* ... */ },
hook2: []
})
๐๏ธ Unregistering hooks:
const lib = new FooLib()
async function hook0() { /* ... */ }
async function hook1() { /* ... */ }
async function hook2() { /* ... */ }
// The hook() method returns an "unregister" function
const unregisterHook0 = lib.hook('hook0', hook0)
const unregisterHooks1and2 = lib.addHooks({ hook1, hook2 })
/* ... */
unregisterHook0()
unregisterHooks1and2()
// or
lib.removeHooks({ hook0, hook1 })
lib.removeHook('hook2', hook2)
๐ Triggering a hook handler once:
const lib = new FooLib()
const unregister = lib.hook('hook0', async () => {
// Unregister as soon as the hook is executed
unregister()
/* ... */
})
Register a handler for a specific hook. fn
must be a function.
Returns an unregister
function that, when called, will remove the registered handler.
Similar to hook
but unregisters hook once called.
Returns an unregister
function that, when called, will remove the registered handler before first call.
Flatten and register hooks object.
๐กExample:
mimikrook.addHooks({
test: {
before: () => {},
after: () => {}
}
})
This registers test:before
and test:after
hooks at bulk.
Returns an unregister
function that, when called, will remove all the registered handlers.
Used by class itself to sequentially call handlers of a specific hook.
If you need custom control over how hooks are called, you can provide a custom function that will receive an array of handlers of a specific hook.
callerFn
if a callback function that accepts two arguments, hooks
and args
:
hooks
: Array of user hooks to be calledargs
: Array of arguments that should be passed each time calling a hook
Deprecate hook called old
in favor of name
hook.
Deprecate all hooks from an object (keys are old and values or newer ones).
Remove a particular hook handler, if the fn
handler is present.
Remove multiple hook handlers.
๐ก Example:
async function handler() { /* ... */ }
mimikrook.hook('test:before', handler)
mimikrook.addHooks({ test: { after: handler } })
// ...
mimikrook.removeHooks({
test: {
before: handler,
after: handler
}
})
Remove all hook handlers.
Registers a (sync) callback to be called before each hook is being called.
mimikrook.beforeEach((event) => { console.log(`${event.name} hook is being called with ${event.args}`)}`)
mimikrook.hook('test', () => { console.log('running test hook') })
// test hook is being called with []
// running test hook
await mimikrook.callHook('test')
Registers a (sync) callback to be called after each hook is being called.
mimikrook.afterEach((event) => { console.log(`${event.name} hook called with ${event.args}`)}`)
mimikrook.hook('test', () => { console.log('running test hook') })
// running test hook
// test hook called with []
await mimikrook.callHook('test')
Automatically logs each hook that is called and how long it takes to run.
const debug = mimikrook.createDebugger(hooks, { tag: 'something' })
hooks.callHook('some-hook', 'some-arg')
// [something] some-hook: 0.21ms
debug.close()
๐ Clone this repository
๐ง Enable Corepack using corepack enable
๐ฆ Install dependencies using nyxi ๐ง Always right package manager
MIT - Made with ๐