xml-streamify icon indicating copy to clipboard operation
xml-streamify copied to clipboard

Fetch and parse XML with JavaScript web streams and async iterators ✨

Results 3 xml-streamify issues
Sort by recently updated
recently updated
newest added

`parse` seems to be the main working horse, it would be great to have the API to work with the `ReadableStream` as the source to allow for both File or...

For issue #1 - this PR allows an optional `ReadableStream` input to the `parse` function instead of a URL. Current URL example: ```js const parser = parse('https://feed.syntax.fm/rss'); ``` Stream example:...

Bun is missing `TextDecoderStream` that is used from v0.5.0 onwards. https://github.com/oven-sh/bun/issues/5648 Temporary fix 1: use v0.4.0 for now. Temporary fix 2: add a polyfill based on [Node's implementation](https://github.com/nodejs/node/blob/main/lib/internal/webstreams/encoding.js). I don't...