dominictarr / JSONStream

rawStream.pipe(JSONStream.parse()).pipe(streamOfObjects)
Other
1.92k stars 165 forks source link

Utilize Node Streams 3 API to add support for stream Async Iterator #166

Closed Guardiannw closed 5 years ago

Guardiannw commented 5 years ago

With the advent of Node 10, node streams now support Async Iteration out of the box. However, JSONStream seems to not have this feature out of the box yet.

If possible, I think it would be a great addition to this module if Async Iteration could be supported out of the box.

Thanks!