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
})

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i hookit

      Weekly Downloads

      618

      Version

      1.1.3

      License

      MIT

      Last publish

      Collaborators

      • crabdude