Skip to content
Multiple inheritance (well, sort of) through prototype derivation
JavaScript
Find file
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Failed to load latest commit information.
.npmignore
LICENSE Initial commit
README.md
bower.json
derive.js
package.json

README.md

derive NPM version

A utility to either derive from multiple super-constructors, or inherit from one super-constructor.

Note

You shouldn't rely on getters or setters with side effects (like the Array's length property) when deriving from native types. (You probably shouldn't derive or inherit from native types anyway)

Also, the instanceof operator will not work as expected, because it checks if a prototype in the chain is equal to the prototype of the object it's being checked against - which means it will return false for everything you've derived from.

That's why it's called derive, not inherit.

Install with npm

$ npm install derive

Install with bower

$ bower install derive

Usage

Deriving from multiple super-constructors:

// Your constructor function
function Example() {
  // Don't forget to call the
  // super's constructors
  EventEmitter.call( this )
  Array.call( this )
}

// Your prototype
Example.prototype = {
  constructor: Example,
  get bla() { return 1 },
  method: function() {
    // ...
  }
}

derive( Example, EventEmitter, Array )

Inheriting from a super-constructor:

function Example() {
  Emitter.call( this )
}

Example.prototype = {
  constructor: Example,
  set setter( value ) {},
  method: function noop() {
    // ...
  }
}

derive.inherit( Example, Emitter )
Something went wrong with that request. Please try again.