extendonclass

1.0.1 • Public • Published

Extend on Class

Build Status NPM version Dependency Status Development Dependency Status
Gittip donate button Flattr donate button PayPayl donate button BitCoin donate button Wishlist browse button

Add a backbone-like extend method onto your CoffeeScript classes, making it easy for JavaScript users to extend your CoffeeScript classes

Install

NPM

  • Use: require('extendonclass')
  • Install: npm install --save extendonclass

Browserify

  • Use: require('extendonclass')
  • Install: npm install --save extendonclass
  • CDN URL: //wzrd.in/bundle/extendonclass@1.0.1

Ender

  • Use: require('extendonclass')
  • Install: ender add extendonclass

Usage

For JavaScript Users

// Import
var SomeCoffeeScriptClass = require('some-coffee-script-module');
 
// Add our super easy extend method to the CoffeeScript class
SomeCoffeeScriptClass.extend = require('extendonclass').extendOnClass;
 
// Extend the CoffeeScript class easily with JavaScript
var MyJavaScriptClass = SomeCoffeeScriptClass.extend({
    constructor: function(){
        // do your thing
        // if you wish to call super, you can do so via:
        // this.__super__.constructor.apply(this, arguments);
    }
});

For CoffeeScript Users

View the interactive JSFiddle

History

Discover the change history by heading on over to the HISTORY.md file.

Contribute

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Backers

Maintainers

These amazing people are maintaining this project:

  • Benjamin Lupton b@lupton.cc (https://github.com/balupton)

Sponsors

No sponsors yet! Will you be the first?

Gittip donate button Flattr donate button PayPayl donate button BitCoin donate button Wishlist browse button

Contributors

These amazing people have contributed code to this project:

Become a contributor!

License

Licensed under the incredibly permissive MIT license

Copyright © 2013+ Bevry Pty Ltd us@bevry.me (http://bevry.me)

Package Sidebar

Install

npm i extendonclass

Weekly Downloads

67

Version

1.0.1

License

MIT

Last publish

Collaborators

  • balupton