Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 439 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 439 Bytes

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