![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
async-broadcaster
Advanced tools
Observable alternative using async iterators
npm i async-broadcaster
It's a common requirement to let users subscribe to new values that are produced asynchronously. Often we reach for an observable library (RxJS, zen-observable, Wonka, etc.) to manage subscriptions and allow broadcasting of new values, but full observable implementations may be overkill for simple subscriptions. Observable also bring along a new API, when JavaScript already has an standard API for consuming asynchronous values: async iterables.
What's needed to enable consumers to use async iterables is a way for producers to make async iterables that can be listened to by multiple listeners and correctly handle buffering, unsubscription, etc.
This is what AsyncBroadcaster does.
AsyncBroadcaster takes a single async iterable and adapts it to allow multiple listeners.
import {AsyncBroadcaster} from 'async-broadcaster';
async function* makeOneHundred() {
for (let i = 0; i < 100; i++) {
yield i;
}
}
const broadcaster = new AsyncBroadcaster(makeOneHundred());
// listen to broadcast values
logValues(broadcaster.iterable);
// We can listen more than once
logValues(broadcaster.iterable);
async function logValues(iterable) {
// listening is done with anything that can consume async iterables, like
// a for/await-of loop:
for await (const o of iterable) {
console.log(o);
}
}
Async iterables don't have the functional methods that Array does like map()
, reduce()
, or filter()
, nor the common reactive operators like count()
, zip()
, etc.
These can be imported from a library that works with any async iterable, such as IxJS.
import { filter, map } from 'ix/asynciterable/operators';
const results = from(broadcaster.iterable).pipe(
filter(async x => x % 2 === 0),
map(async x => x * x)
);
for await (let item of results) {
console.log(`Next: ${item}`);
}
FAQs
Observable alternative using async iterators
We found that async-broadcaster 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.