quora-feed-parser
v1.0.11
Published
Package that pase your first feed article
Downloads
7
Readme
Quora feed parser
Package that parse your first article from feed at quora.com
Install
npm i quora-feed-parser
Usage
import QFP from 'quora-feed-parser';
(async () => {
const resultOfQFP = await QFP('[email protected]', '123test');
// resultOfQFP => ['Title of your first articale from feed', 'Content the most popular answer'];
})()