JSPM

extendonclass

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 51
  • Score
    100M100P100Q67062F
  • License

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

Package Exports

  • extendonclass

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (extendonclass) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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:

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)