New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

js-toolbox

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-toolbox

Provides a primitive base class for class-based inheritance for node.js, as well as code to make this available in a browser

1.2.3
latest
Source
npm
Version published
Weekly downloads
1
-50%
Maintainers
1
Weekly downloads
 
Created
Source

JS Toolbox

Author: Rich Hildred forked from Jimmy Do

License: MIT

Class based inheritance in the style of BackBone in JavaScript code for Node.js.

index.js

npm install js-toolbox

Provides a primitive base class (Toolbox.Base) for class-based inheritance. Install with npm install js-toolbox --save. Based on code from Backbone (http://documentcloud.github.com/backbone/).

var Toolbox = require('js-toolbox').Toolbox;
var assert = require('assert');

var Animal = Toolbox.Base.extend({
    constructor: function (name) {
        this._name = name;
    },
    sayName: function () {
        return('Hi, my name is ' + this._name);
    }
});

var oAnimal = new Animal("Tony the Tiger");
assert(oAnimal.sayName() === 'Hi, my name is Tony the Tiger');

js-toolbox can also be used in a browser see browserTest.html.. To use it in a browser I added require and module.exports implementations that are also usable in any file included after js-toolbox. To browserify js-toolbox I needed jQuery.extend, since I had it already I added it, jQuery.proxy, jQuery.ajax and just plain jQuery dom parsing to my exports as _jQuery. If you wanted to use jQuery.ajax on node for instance you would use var jQuery = require('js-toolbox')._jQuery; See the file tests/index.js

Depends on:

Keywords

Node.js

FAQs

Package last updated on 26 Dec 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts