Kivach
Cascading donations
Add repoPopularDonorsF.A.Q.
My repos

Footer

Subscribe to our newsletter

The latest news, articles, and resources, sent to your inbox.

DiscordTelegramTwitterMediumFacebookYouTubeGitHub

All information about repositories belongs to their owners.

More information about Kivach in the introductory article.

Built on Obyte

Total donated
Undistributed
Share with your subscribers:

Recipients

How the donated funds are distributed

Support the dependencies

Support the repos that depend on this repository

Top contributors

Recent events

Kivach works on the Obyte network, and therefore you can track all donations.

No events yet
juliangruber's profile
juliangruber
7 contributions
phillipgreenii's profile
phillipgreenii
1 contributions
juliangruber

juliangruber/deferred-stream

A simple deferred stream, useful when you need to do async operations before emitting data.

JavaScript
1
1
No license

Support the dependencies of juliangruber/deferred-stream

Account's avatar
nodejs/readable-stream
Node.js Streams, a user-land copy of the stream library from Node.js
Account's avatar
tape-testing/tape
tap-producing test harness for node and browsers

Deferred‑stream provides a tiny wrapper that creates a readable Node.js stream whose data emission can be delayed until asynchronous work finishes. developers can call `deferred(fn)` to get a stream, perform async actions inside `fn` (e.g., setTimeout, database calls), and write to the stream when ready, making it handy for building pipelines that need async preparation before data flows.