baseclass

0.3.0 • Public • Published

baseclass

For when you just want Backbone's Class.extend() function.

Build Status

Backbone.js style inheritance. The extend function has been taken directly from Backbone. This is really @bermi 's idea.

Very similar to uberclass and class.js -- the main difference is that the prototype props and static props order has been reversed.

Usage

var BaseClass = require("baseclass");
 
var MyClass = BaseClass.extend({
    someProp: 'My property value',
    someMethod: function () { ... },
    constructor: function (arg1, arg2) { ... }
},{
    optionalStaticProp = "MyClass.optionalStaticProp"
});
 
var inst = new MyClass(arg1, arg2);
 

Licence

MIT

/baseclass/

    Package Sidebar

    Install

    npm i baseclass

    Weekly Downloads

    1

    Version

    0.3.0

    License

    MIT

    Last publish

    Collaborators

    • aearly