Robert Brennan

Results 1267 comments of Robert Brennan

Hi there - can you make sure you have `api-spec-converter` installed? `npm i -g api-spec-converter` That should fix the issue.

Swagger 2.0 uses JSON Schema Draft 4 (or a subset thereof). IIUC AJV 6 uses draft 7 by default. I think we can upgrade if we add these lines to...

There are a few different options here: * You can maintain state in memory, e.g. by keeping a variable outside your `handler`. Of course, if the process restarts, you'll lose...

This makes a lot of sense. I think it's a great idea. I think ideally, the `requestOptions` would get passed to `create()`. Currently `create()` just takes in a single object...

Thanks for the report. Could you supply some more information? I just see source code in your screenshot.

Hmm. If I remember correctly, when running server-side, we need to add a User-Agent header for a lot of feeds to work. So this could be a breaking change. Does...

OK, I think this might be a better solution (untested pseudocode): ```js let headers = { 'User-Agent': 'rss-parser', } if (typeof window !== 'undefined' && window.navigator && window.navigator.userAgent) { headers['User-Agent']...

🤔 yeah I could see the usefulness here. Feel free to open a PR!

I think this is because `url` is an attribute, rather than a child tag. Would be happy to accept a PR that adds support for `media:thumbnail`

👍 this seems like a great idea!