bextend is the Backbone extend function helper wrapped in a Node.js module.
npm install bextend --save
var extend = require('bextend');
var SomeClass = function() {};
SomeClass.extend = extend;
SomeClass.prototype = {
someMethod = function() {}
};
SomeOtherClass = SomeClass.extend({
otherMethod = function() {}
});