Fergie
Fergie

Reputation: 6245

How do you create a node.js style Readable Stream in a browser using native JS?

You can read a Readable Stream that is produced by a browserified lib. You can also create a Readable Stream using a lib like highland.js.

Is there then a way to create Node.js style Readable Streams in a browser that doesnt rely on an external lib?

Upvotes: 0

Views: 290

Answers (1)

mscdex
mscdex

Reputation: 106736

Not at the moment, although there is a Streams standard currently in the works that you may want to follow.

Upvotes: 1

Related Questions