
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Provides a primitive base class for class-based inheritance for node.js, as well as code to make this available in a browser
Author: Rich Hildred forked from Jimmy Do
License: MIT
Class based inheritance in the style of BackBone in JavaScript code for Node.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:
FAQs
Provides a primitive base class for class-based inheritance for node.js, as well as code to make this available in a browser
The npm package js-toolbox receives a total of 4 weekly downloads. As such, js-toolbox popularity was classified as not popular.
We found that js-toolbox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.