↧
Answer by Badri for How can I access the response headers of a request that...
Pass the metaData on end like'use strict';const FeedParserStream = require('feedparser');module.exports = (feedparserOptions, metaData) => { // console.log(metaData, 'herre'); const parsedItems =...
View ArticleHow can I access the response headers of a request that is piped to a feedparser
I am trying to parse an RSS feed using request js and feedparser-promised libraries. I am able to parse the feed using the below code.import Bottleneck from 'bottleneck';const feedparser =...
View Article