
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.
Base constructor to ease prototype inheritance.
var Objex = require('objex'),
Animal = Objex.create(function() {
Animal.__super.apply(this, arguments);
this.feet = 4;
this.hands = 0;
this.head = 1;
}),
Wolf = Animal.create(),
Dog = Wolf.create(),
Monkey = Animal.create(function() {
Monkey.__super.apply(this, arguments);
this.feet = 2;
this.hands = 2;
}),
wolf = new Wolf(),
dog = new Dog(),
monkey = new Monkey();
// check inheritance
console.log('wolf is instance of Wolf', wolf instanceof Wolf);
console.log('wolf is instance of Animal', wolf instanceof Animal);
console.log('monkey is instance of Monkey', monkey instanceof Monkey);
console.log('monkey is instance of Animal', monkey instanceof Animal);
console.log('dog is instance of Dog', dog instanceof Dog);
console.log('dog is instance of Wolf', dog instanceof Wolf);
console.log('dog is instance of Animal', dog instanceof Animal);
var Animal = Objex.create(function() {
Animal.__super.apply(this, arguments);
Animal.count++;
}),
Sheep,
Wolf;
Animal.count = 0;
Animal.kill = function() {
if (Animal.count > 0) {
Animal.count--;
}
};
// pass `false` as first argument to prevent static fields bypass,
// static method `create` will be copied anyway.
// Assume, you want to count sheeps separately.
// Animal.count will not be copied to Sheep.count, because it useless here.
// Animal.kill will not be copied to Sheep too, aren't you want to shoot your own Sheep?
Sheep = Animal.create(false, function() {
Sheep.count++;
});
Sheep.count = 0;
// pass array of property names as first argument
// to copy certain static properties only.
// Static property `count` is useless for Wolf,
// but you are still able to kill it, and decrease global Animal.count!
Wolf = Animal.create(['kill'], function() {
Wolf.__super.apply(this, arguments);
this.hungry = false;
});
Suppose, you need to create Error inheritor, so your prototype chain must look like ErrorEx > Error > Object
, not ErrorEx > Object
.
Objex.wrap
at your service!
var MyOwnErrorEx;
function ErrorEx() {
ErrorEx.__super.apply(this, arguments);
this.extended = true;
}
util.inherits(ErrorEx, Error);
Objex.wrap(ErrorEx, Error);
// now ErrorEx has `create` method and `__super` property
MyOwnErrorEx = ErrorEx.create(function(code) {
this.code = code;
MyOwnErrorEx.__super.apply(this, Array.prototype.slice.call(arguments, 1));
});
Mixin (copy) static and prototype properties from any constructor to the Objex successor, without prototype chain modification. Mixed properties will be own properties of a target object.
var Animal = Objex.create(),
Dog = Animal.create(),
TrickyPet = function() {}, // mixin ctor
LoudVoice = function() {}, // more one
jimmy = new Dog();
Animal.prototype.say = function(wat) {
console.log(wat);
}
// mixin method
TrickyPet.prototype.jumpBackward = function() {
this.say('Woo-oo!');
};
// copy TrickyPet.prototype methods to Dog.prototype
Dog.mixin(TrickyPet);
// call copied method from the instance of Dog
jimmy.jumpBackward();
// mixin method
LoudVoice.prototype.say = function(wat) {
console.log('(loud voice)', wat);
};
// override existing Dog prototype's method `say`
Dog.mixin({ override : true }, LoudVoice);
jimmy.jumpBackward();
You can declare special static method __objexOnMixing
in the mixin, which will be called while mixin applies:
var Human = Objex.create(function() {
Human.__super.apply(this, arguments);
Human.population++;
}),
Mutant = function() {}; // mixin
Human.population = 1000;
Human.prototype.doSomething = function() {
console.log('Doing something...');
};
Mutant.__objexOnMixing = function(Base, isHungry) {
var doSomething = Base.prototype.doSomething;
if (isHungry && typeof doSomething === 'function') {
// extend Base method if Mutant is hungry
Base.prototype.doSomething = function() {
// eat anybody before doing something
Base.population--;
return doSomething.apply(this, arguments);
}
}
};
// people became hungry mutants
Human.mixin(Mutant, true);
var human = new Human();
console.log(Human.population); // -> 1001
human.doSomething(); // -> 'Doing something...'
console.log(Human.population); // -> 1000
Description of the Objex and its successors static methods.
Create successor of the callee with constructor passed as ctor
argument. Argument options
describes how the successor inherits statis fields:
true
β default value; copy all static properties w/o existing properties overriding;false
β don't copy statis properties;{ include : [], exclude : [] }
β object with optional fields include
and exclude
which are arrays of properties' names to copy of not;Array of String
β shotcut syntax for { include : [] }
.Add Objex create
and mixin
static methods to the ctor
which is not Objex successor without prototype chain modification.
Mixin (copy) static and prototype methods of ctor
to the callee contructor and its prototype if they doesn't exists.
Argument options
is mostly the same as of the create
method, but the object argument can contain additional properties:
{Boolean} [override=false]
β if it equals true
existing methods of the callee will be overriden by mixin's methods,{Boolean} [skipDynamicMixing=false]
β if it equals true
__objexOnMixing wonβt be called.FAQs
Easy prototype and static methods inheritance via inheritedBy method
The npm package objex receives a total of 64 weekly downloads. As such, objex popularity was classified as not popular.
We found that objex demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.Β It has 2 open source maintainers 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.