inherit.js

0.1.7 • Public • Published

inherit.js - Inheritance javascript library

inherit.js is an inheritance javascript library, which supports base method calls an easy way along the inheritance path.

Usage

Declare a class

var YourClass = inherit.Base.inherit({
    ctor: function(foo, bar) {
        // constructor
        this.foo = foo;
        this.bar = bar;
    },
    publicFunction: function() {
        // function declaration
    }
});

Inherit from your class

var DerivedClass = YourClass.inherit({
    ctor: function(foo, bar) {
        // call base ctor
        this.base.ctor.call(this, foo, bar);
    },
    anotherPublicFunction: function(){
        // your code goes here
    },
    // overwrite method
    publicFunction: function() {
        // call base method
        this.base.publicFunction.callBase(this);

        // do other stuff
    }
});

Create instances

var foo = new YourClass("foo", "bar");
var bar = new DerivedClass("bar", "foo");

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.7
    5
    • latest

Version History

Package Sidebar

Install

npm i inherit.js

Weekly Downloads

9

Version

0.1.7

License

none

Last publish

Collaborators

  • it-ony