4.0.0 • Published 9 years ago
prototype-hooks v4.0.0
prototype-hooks
Adds before and after hooks to any JavaScript protoype chain.
Installation
npm install --save prototype-hooksFeatures
- Adds 
.before()hook for all existing prototype methods - Adds 
.afterhook for all existing prototype methods - Quickly enables Apsect-oriented Programming AOP patterns for JavaScript
 
Example Usage
var hooks = require('protoype-hooks');
var Creature = function (opts) {
  this.name = opts.name;
};
Creature.prototype.talk = function (data, cb) {
  cb(null, this.name + ' says ' + data.text);
};
hooks(Creature);
var larry = new Creature({ name: "Larry" });
larry.before('talk', function(data, next) {
  data.text = data.text + "!";
  next(null, data);
});
larry.after('talk', function(text, next) {
  text = text + ' ... ';
  next(null, text);
});
larry.talk({ text: 'hi'}, function (err, result){
  console.log(err, result);
  // outputs: 'Larry says hi! ... '
})