0.2.1 • Published 3 years ago

rss-client v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

rss-client

WIP

Installation

npm install --save rss-parser rss-client

Usage

// TypeScript
import { RssClient } from "rss-client";

const client = new RssClient("https://www.reddit.com/.rss");

const { items } = await client.fetch({
  ignoreFirstTimeFetchResult: true,
});
console.log(items); // Empty array.

const { items: newItems } = await client.fetch();
console.log(newItems); // Items those are posted after last fetch.
0.2.1

3 years ago

0.1.0

3 years ago

0.2.0

3 years ago

0.0.10

3 years ago

0.0.11

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.4

3 years ago

0.0.1

3 years ago