Closed iONinja closed 6 years ago
I think this may be what you're looking for...
https://github.com/scripting/feedread
I felt as you do -- that all the piping was over-optimizing. For most applications, I just want the data from the feed in a JS object. Which is what feedRead does. It builds on Dan's feedParser package.
However it is not synchronous, because there is I/O involved in reading the feed over the web or from a local file, but inside the callback the feed is just a simple object.
Dave
there is I/O involved in reading the feed over the web or from a local file
Thanks for explaining that so simply @scripting 🙏
Thanks, that's just what I was looking for!
Hi there,
You're library looks really nice, but I would love to be able to syncronously access the parsed feed. Seeing as there's no network or disk I/O, the library's API doesn't need to be asynchronous?
Let me know if this is already a feature, or you're planning to add it. Thank you!