extendonclass
v1.0.1
Published
Add a backbone-like extend method onto your CoffeeScript classes, making it easy for JavaScript users to extend your CoffeeScript classes
Downloads
328
Maintainers
Readme
Extend on Class
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/[email protected]
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
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 [email protected] (https://github.com/balupton)
Sponsors
No sponsors yet! Will you be the first?
Contributors
These amazing people have contributed code to this project:
License
Licensed under the incredibly permissive MIT license
Copyright © 2013+ Bevry Pty Ltd [email protected] (http://bevry.me)