node-xml
node-xml copied to clipboard
Dependency on Stream Library
The package claims that is needs no depenencies: https://www.npmjs.com/package/xml
But I believe it rely on on Stream https://www.npmjs.com/package/xml
@Scuilion that's probably because this is intended for use in Node projects and stream is a builtin Node API: https://nodejs.org/api/stream.html
If you need to use this in a browser/React Native environment it should be possible to shim the stream library using something like this: https://github.com/substack/stream-browserify
See also: https://github.com/webpack/node-libs-browser
@eqyiel You're a 100% right. I was using this in a browser. Thanks for the response!