hookit

1.1.3 • Public • Published

hook

Shim all core IO calls and allow callback shimming via wrap function.

Installation

$ npm install hookit

Usage:

hookit(function generateShim(callback, fnName) {
  return function() {
    try {
      callback.apply(this, arguments);
    } finally {
      console.log('bummer.')
    }
  }
})
 
process.nextTick(function() {
  throw new Error('here') // Will log "bummer" before we crash on error
})

/hookit/

    Package Sidebar

    Install

    npm i hookit

    Weekly Downloads

    725

    Version

    1.1.3

    License

    MIT

    Last publish

    Collaborators

    • crabdude