Reputation: 1329
I'm searching a way to have something equal to Dart's streams API in Javascript. Do you know how I can get something similar ?
Upvotes: 0
Views: 866
Reputation: 42453
JavaScript doesn't have its own version of Dart's Streams, but there are many libraries that add the same sort of functionality. RxJS is a popular one created by Microsoft, for example.
Upvotes: 2