An open API service indexing awesome lists of open source software.

https://github.com/robot-inventor/find-feed

Find the URL of the feed of the specified web page.
https://github.com/robot-inventor/find-feed

Last synced: 11 months ago
JSON representation

Find the URL of the feed of the specified web page.

Awesome Lists containing this project

README

          

# find-feed

Find the URL of the RSS feed of the specified web page.

## Features

- Retrieve feeds from parent pages
- Obtain `` tags

## Installation

```bash
npm install find-feed
```

## Usage

```typescript
import { findFeed } from "find-feed";

const feeds = await findFeed("https://example.com/", {
// Search for feeds in the parent page URL.
recursive: true,
// Perform an aggressive search for feeds, including uncertain ones.
// It will heuristically detect RSS feed URLs by exploring links such as ``.
aggressiveSearch: true
});
```

For more details, please refer to the [documentation](./docs/README.md).