A simple Node.js module to parse an RSS feed URL and return an array of JSON objects
npm install rss-url-parser --save
const parser = require('rss-url-parser')
const data = await parser('http://mydomain.com/rss')
data.forEach((item) => console.log(item))
The stub data used for testing is provided by Lorem RSS; The data is licensed under a Creative Commons Attribution 3.0 Unported License.