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.
- Host: GitHub
- URL: https://github.com/robot-inventor/find-feed
- Owner: Robot-Inventor
- License: mit
- Created: 2025-05-05T17:37:17.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-05-05T18:38:05.000Z (11 months ago)
- Last Synced: 2025-05-05T18:43:02.967Z (11 months ago)
- Language: TypeScript
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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).