Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@effection/subscription
Advanced tools
APIs for producing, consuming and transforming streams of data within effection operations.
At it's lowest level, the subscription API does not actually require
any helpers to implement, only that the subscription object itself
conform to a certain API, and that the caller respect . However, to
manually implement this API every time would be unreasonably
cumbersome. This is where createSubscription
comes in. It returns an
operation that produces a Subscription
from a publisher. Where
publisher
is a fuction that takes a publish
function and returns
an Operation that produces the return value of the subscription.
type Publisher<T> = (publish: (value: T) => void) => Operation<T>;
createSubscription<T, TReturn>(publisher: Publisher<T,TReturn>): Operation<Subscription<T,TReturn>>
the publish function is called to "push" a value out to the
subscription so that it will be returned by a subsequent call to the
next()
operation of the subscription. Publish can be called many
times in between subsequent calls to next
and still not lose a
value.
For example, to implement the on
subscription for event emitters:
export function on(emitter, eventName) {
return createSubscription(function* (publish) {
let listener = (...args) => publish(args);
try {
emitter.on(eventName, listener);
yield;
} finally {
emitter.off(eventName, listener);
}
});
}
Now, any event can be consumed as a subscription:
let subscription = yield on(socket, 'message');
while (true) {
let { value: [message] } = subscription.next();
yield handleMessage(message);
}
One of the greatest advantages of using createSubscription
is that
the Subscription
produced is an effection resource, and so will
automatically be shut down when no longer needed. That way, there is
no need to call the unsubscribe()
method ever.
In order to facilitate interoperation of subscription producers and
consumers, any object can implement the [SymbolSubscribable]()
method in order to be turned into a subscription. This follows the
pattern of Symbol.iterator
, and Symbol.observable
. Any object that
implements this method can be consumed as a subscription.
In order to lift functions into the context of a subscription, you can use
subscribe
which can be used to transform subscriptions via combinators.
Returns a new subscribable whose items are transformed by fn
. For
example:
subscribe(websocket).map(message => JSON.parse(message));
Return a new Subscribable
that only produces items from its source
that match predicate
.
subscribe(websocket).filter(message => message.type === 'command');
Return a new Subscribable
that only produces items from its source that match
reference
in the sense that the produced items have the same properties and
values as reference
.
subscribe(websocket).match({ type: 'command' });
An operation that produces the first item in a subscription or undefined if the subscription has no items.
let message = yield subscribe(websocket).first();
An operation that produces the first item in a subscription or throws an error if the subscription has no items.
let message = yield subscribe(websocket).expect();
Calls the given operation function with each item in the subscription. Returns the return value of the subscriopion when done.
let exitCode = yield subscribe(websocket).forEach(function*(message) {
// ...
});
FAQs
Effection Subscriptions
The npm package @effection/subscription receives a total of 3,330 weekly downloads. As such, @effection/subscription popularity was classified as popular.
We found that @effection/subscription 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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.