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.
A client and server side library for routing events.
I was disgusted by the size of MiniEE (122 sloc, 4.4kb), so I decided a rewrite was in order.
MicroEE is a more satisfying (~50 sloc, ~1200 characters), and passes the same tests as MiniEE (excluding the RegExp support, but including many real-world tests, such as removing a once() callback, and checking for the correct order of once callback removal).
npm install microee
Use the version in ./dist/
. It exports a single global, microee
.
To run the in-browser tests, open ./test/index.html
in the browser after cloning this repo and doing npm install (to get Mocha).
microee.mixin
var MicroEE = require('microee');
function MyClass() {
// ...
}
MicroEE.mixin(MyClass);
MyClass.prototype.foo = function() {
// ...
};
var obj = new MyClass();
// set string callback
obj.on('event', function(arg1, arg2) { console.log(arg1, arg2); });
obj.emit('event', 'aaa', 'bbb'); // trigger callback
The API is based on Node's EventEmitter.
There are two additional niceties: emitter.when(event, listener)
and .mixin()
.
Support for emitter.listeners(event)
was added in v0.0.6
.
Adds a listener to the end of the listeners array for the specified event.
server.on('connection', function (stream) {
console.log('someone connected!');
});
Returns emitter, so calls can be chained.
Adds a one time listener for the event. This listener is invoked only the next time the event is fired, after which it is removed.
Returns emitter, so calls can be chained.
Addition to the regular API. If listener
returns true, the listener is removed. Useful for waiting for a particular set of parameters on a recurring event e.g. in tests.
Returns emitter, so calls can be chained.
Addition to the regular API. Extends object.prototype
with all the microee methods, allowing other classes to act like event emitters.
Execute all listeners on event
, with the supplied arguments.
Returns emitter, so calls can be chained.
Remove a listener from the listener array for the specified event.
Removes all listeners, or those of the specified event.
Returns an array of listeners for the specified event.
FAQs
A tiny EventEmitter-like client and server side library
The npm package microee receives a total of 20,214 weekly downloads. As such, microee popularity was classified as popular.
We found that microee 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.