
Security News
Re-Enabled GitHub Actions Expose Thousands of Repositories to Mini Shai-Hulud
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.
@pixi/runner
Advanced tools
A simple alternative to events and signals with an emphasis on performance.
A simple alternative to events and signals with an emphasis on performance.
Can be used as an alternative to events / signals.
npm install @pixi/runner
import { Runner } from '@pixi/runner';
const onComplete = new Runner('onComplete');
// listenerObject needs to have a 'onComplete' function
onComplete.add(listenerObject);
// emit() and all listeners will have their 'onComplete' functions called
onComplete.emit(data);
Can be used to execute a function on many objects. Handy for games. If you need to update you game elements each frame:
import { Runner } from '@pixi/runner';
const updateRunner = new Runner('update');
// gameItems should all have a 'update' function
updateRunner.add(gameItem1);
updateRunner.add(gameItem2);
updateRunner.add(gameItem3);
// Update game elements...
updateRunner.emit();
Pros:
Cons:
In practice I have found the Runner incredibly useful and so thought it would be nice to share with the world. It currently forms the backbone of the messaging system in our game engine. Its working out great for things like update events, collision events etc.
Great to use if you are say looping through and array and calling the same function on each object. The resulting code is cleaner than a loop whilst still keeping the performance as fast as possible.
So yeah, if you are dispatching signals/events to a lot of listeners often (like everyframe often), then I would consider using this alternative. For most cases, this performance boost is not really important enough to switch from your current fave.
Think of this as a nice alternative for when speed really counts!
to run the tests, move to the runner-benchmark folder then run the following:
npm run benchmark
Next open you browser (http://localhost:9966). The test is run in the console. The test result above comes from macbook pro chrome 58.
Any thoughts or comments hit me up on twitter @doormat23, I'd love to hear them!
FAQs
A simple alternative to events and signals with an emphasis on performance.
The npm package @pixi/runner receives a total of 0 weekly downloads. As such, @pixi/runner popularity was classified as not popular.
We found that @pixi/runner 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.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.

Research
/Security News
The compromise affects MemTensor's MemOS, an open source memory framework for large language models (LLMs) and AI agents. Both npm package @memtensor/memos-cloud-openclaw-plugin and the PyPI package MemoryOS are compromised. They drop cross-platform Go binaries that exfiltrate developer secrets.