UNPKG

feed-reader

Version:

To read and normalize RSS/ATOM/JSON feed data

28 lines (17 loc) 623 B
# deno-feed-reader With `deno`, we have not much thing to do. Just start the server: ```bash deno run --allow-net --allow-env --allow-read index.ts ``` 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 ``` ---