0.2.1 • Published 4 years ago

rss-client v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 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

4 years ago

0.1.0

4 years ago

0.2.0

4 years ago

0.0.10

4 years ago

0.0.11

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.4

4 years ago

0.0.1

4 years ago