Robert Brennan

Results 1267 comments of Robert Brennan

Thanks for reaching out! How are you adding rss-parser to the browser? Are you just including `dist/rss-parser.min.js`, or are you using `require('rss-parser')`?

Have you tried the [custom fields](https://github.com/rbren/rss-parser#custom-fields) option?

Currently the xml2js passthrough options are just passed to the `xml2js` constructor, not to `parseString`. I'm happy to accept a PR that adds another option that can be passed to...

Thanks for the report. We did switch to ES6 in 3.0.0 From the bit.ly link, it says "ask that the package be published pre-compiled". We have a pre-compiled version in...

It should be `new RSSParser()`

Thanks @n7best. Any tips on how we can change rss-parser to better support create-react-app?

I tried switching to babel-preset-env, but it gives the same result as babel-preset-2015 The code generated by babel (everything in `./dist/`) is all ES5, [per the README](https://github.com/babel/babel/tree/master/packages/babel-preset-env). So I'm not...

I would try using the file in `dist/rss-parser.min.js`. If you're using version 2.x, you should also use the [README from that version](https://github.com/bobby-brennan/rss-parser/tree/8adce69465999c7dd790bd45cd6faf5bb250527c), as the API has changed. In particular, RSSParser...

Are you running this using `node`, or in the browser?