feed-reader
Version:
To read and normalize RSS/ATOM/JSON feed data
36 lines (22 loc) • 585 B
Markdown
# node-feed-reader
Install dependencies:
```bash
npm i
# or pnpm, yarn
```
Start server:
```bash
npm start
```
Open `http://localhost:3103/?url=https://news.google.com/rss` to see the result.
You can specify the following options via query string parameters:
- `includeEntryContent`
- `includeOptionalElements`
- `useISODateFormat`
- `normalization`
These params can be set to `y` or `n`, with `y` is truthy, `n` is falsy.
For examples:
```
http://localhost:3103/?url=https://news.google.com/rss&includeEntryContent=y&useISODateFormat=n&includeOptionalElements=y
```
---