Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
A simpler tapable alternative, which can be used to create hooks for plugins.
>_ yarn add hable
>_ npm install hable
Extend your base class from Hable:
import Hookable from 'hable'
export default class MyLib extends Hookable {
constructor() {
// Call to parent to initialize
super()
}
async someFunction() {
// Call and wait for `foo` hooks (if any) sequential
await this.callHook('foo')
// Call and wait for `bar` hooks (if any) in paraller
await this.callHookAsync('bar')
}
}
Inside plugins, register for any hook:
const lib = new MyLib()
// Register a handler for `foo`
lib.hook('foo', async () => { /* ... */ })
// Register multiply handlers at once
lib.hookObj({
foo: async () => { /* ... */ },
bar: [ /* can be also an array */ ]
})
async callHook(name, ...args)
: Used by class itself to sequentially call handlers of a specific hook.async callHookAsync(name, ...args)
: Same as callHook
but calls handlers in parallel.hook(name, fn)
: Used by plugins to register a handler for an specific hook. fn
can be a single function or an array.hookObj(hooksObj)
: Register many hook using an object.$hooks
: An object which maps from each hook name to it's handlers.Extracted from Nuxt.js hooks system. Original author: Sébastien Chopin.
MIT
FAQs
Awaitable hooks for Node.js
The npm package hable receives a total of 88,347 weekly downloads. As such, hable popularity was classified as popular.
We found that hable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.