When using this feed (to track software updates):
http://tweakers.net/feeds/meuktracker.xml
node-feedsub's item emitter seems to emit all published items, instead of only new ones.
What am I doing wrong?
const FeedSub = require('feedsub')
const reader = new FeedSub('http://tweakers.net/feeds/meuktracker.xml', { interval: 1 })
reader.on('item', item => {
console.log(item.title)
})
reader.start()
(The feed does seem to have a correct pubDate field and the individual items as well)