Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
dcl
A minimalistic yet complete JavaScript package for node.js and modern browsers that implements OOP with mixins + AOP at both "class" and object level. Implements C3 MRO to support a Python-like multiple inheritance, efficient supercalls, chaining, full set of advices, and provides some useful generic building blocks. The whole package comes with an extensive test set, and it is fully compatible with the strict mode.
The package was written with debuggability of your code in mind. It comes with a special debug module that explains mistakes, verifies created objects, and helps to keep track of AOP advices. Because the package uses direct static calls to super methods, you don't need to step over unnecessary stubs. In places where stubs are unavoidable (chains or advices) they are small, and intuitive.
Based on ES5, the dcl 2.x
works on Node and all ES5-compatible browsers. It fully
supports property descriptors, including AOP advices for getters and setters,
as well as regular values. If your project needs to support legacy browsers,
please consider dcl 1.x
.
The library includes a small library of useful base classes, mixins, and advices.
The main hub of everything dcl
-related is dcljs.org,
which hosts extensive documentation.
Create simple class:
var A = dcl({
constructor: function (x) { this.x = x; },
m: function () { return this.x; }
});
Single inheritance:
var B = dcl(A, {
// no constructor
// constructor of A will be called automatically
m: function () { return this.x + 1; }
});
Multiple inheritance with mixins:
var M = dcl({
sqr: function () { var x = this.m(); return x * x; }
});
var AM = dcl([A, M]);
var BM = dcl([B, M]);
var am = new AM(2);
console.log(am.sqr()); // 4
var bm = new BM(2);
console.log(bm.sqr()); // 9
Super call:
var AMSuper = dcl([A, M], {
m: dcl.superCall(function (sup) {
return function () {
return sup.call(this) + 1;
};
})
});
var ams = new AMSuper(3);
console.log(ams.sqr()); // 16
AOP advices:
var C = dcl(AMSuper, {
constructor: dcl.advise({
before: function (x) {
console.log('ctr arg:', x);
},
after: function () {
console.log('this.x:', this.x);
}
}),
m: dcl.after(function (args, result, makeReturn) {
console.log('m() returned:', result);
// let's fix it
makeReturn(5);
})
});
var c = new C(1);
// prints:
// ctr arg: 1
// this.x: 1
console.log(c.sqr());
// prints:
// m() returned: 2
// 25
Super call with getters:
var G = dcl({
constructor: function (x) { this._x = x; },
get x () { return this._x; }
});
var g = new G(1);
console.log(g.x); // 1
var F = dcl(G, {
x: dcl.prop({
get: dcl.superCall(function (sup) {
return function () {
return sup.call(this) + 1;
};
})
})
});
var f = new F(1);
console.log(f.x); // 2
Advise an object:
function D (x) { this.x = x; }
D.prototype.m = function (y) { return this.x + y; }
var d = new D(1);
console.log(d.m(2)); // 3
advise(d, 'm', {
before: function (y) { console.log('y:', y); },
around: function (sup) {
return function (y) {
console.log('around');
return 2 * sup.call(this, y + 1);
};
},
after: function (args, result) {
console.log('# of args:', args.length);
console.log('args[0]:', args[0]);
console.log('result:', result);
}
});
console.log(d.m(2));
// prints:
// y: 2
// around
// # of args: 1
// args[0]: 2
// result: 8
Additionally dcl
provides a small library of predefined
base classes,
mixins,
and useful advices. Check them out too.
For more examples, details, howtos, and why, please read the docs.
With npm
:
npm install --save dcl
With yarn
:
yarn add dcl
With bower
:
bower install --save dcl
dcl
can be installed with npm
, yarn
, or bower
with files available from
node_modules/
or bower_components/
. By default, it uses UMD, and ready
to be used with Node's require()
:
// if you run node.js, or CommonJS-compliant system
var dcl = require('dcl');
var advise = require('dcl/advise');
It can be used with AMD out of box:
// if you use dcl in a browser with AMD (like RequireJS):
require(['dcl'], function (dcl) {
// the same code that uses dcl
});
// or when you define your own module:
define(['dcl'], function (dcl) {
// your dcl-using code goes here
});
If you prefer to use globals in a browser, include files with <script>
from /dist/
:
<script src='node_modules/dcl/dist/dcl.js'></script>
Alternatively, you can use https://unpkg.com/ with AMD or globals. For example:
<script src='https://unpkg.com/dcl@latest/dist/dcl.js'></script>
dcl
is extensively documented in the docs.
BSD or AFL — your choice.
FAQs
Elegant minimalistic implementation of OOP with mixins + AOP.
The npm package dcl receives a total of 49 weekly downloads. As such, dcl popularity was classified as not popular.
We found that dcl 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.