# rss-client

> ## **WIP**

Latest version **0.2.1** (published 2021-03-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install rss-client
pnpm add rss-client
yarn add rss-client
bun add rss-client
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.1 |
| Published | 2021-03-25 |
| First published | 2021-03-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 17 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | aktriver |
| Maintainers | aktriver |
| Keywords | rss |

## Links

- npm: https://www.npmjs.com/package/rss-client
- Repository: https://github.com/aktriver/rss-client
- Homepage: https://github.com/aktriver/rss-client#readme
- Issues: https://github.com/aktriver/rss-client/issues
- npm.io page: https://npm.io/package/rss-client

## Recent versions

- 0.2.1 (latest) — 2021-03-25
- 0.2.0 — 2021-03-25
- 0.1.0 — 2021-03-24
- 0.0.11 — 2021-03-21
- 0.0.10 — 2021-03-21
- 0.0.9 — 2021-03-09
- 0.0.8 — 2021-03-09
- 0.0.7 — 2021-03-08
- 0.0.6 — 2021-03-08
- 0.0.4 — 2021-03-08
- 0.0.1 — 2021-03-08

## README

# rss-client

## **WIP**

## Installation

```sh
npm install --save rss-parser rss-client
```

## Usage

```typescript
// 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.
```

---
_Source: https://npm.io/package/rss-client · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
