Druxtan
Druxtan

Reputation: 1329

Dart's streams equivalent for javascript

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

Answers (1)

Danny Tuppeny
Danny Tuppeny

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

Related Questions