Reeder
Reeder is a feed reader app. Protocol Launcher allows you to generate Reeder URL scheme links.
Usage
There are two ways to use this library:
- On-Demand import from subpaths enables tree-shaking and keeps bundles small.
- Full Import from the root package is convenient but includes all app modules.
Pick On-Demand for production builds; Full Import is fine for quick scripts or demos.
Select Installation Method
On-Demand
Recommended. Optimized for production.
Full Import
Convenient. Good for quick scripts.
Notes
Reeder's official help documents only two URL scheme forms: reed:// to open Reeder, and reed://feed-url.com to open Reeder and automatically search for a feed at the specified URL. This module exposes only those documented forms.
Open App
ts
import { open } from 'protocol-launcher/reeder'
const url = open()Open Feed
Open Reeder and automatically search for a feed at the specified URL.
ts
import { openFeed } from 'protocol-launcher/reeder'
const url = openFeed({
url: 'feed-url.com',
})Generated URLs
ts
open()
// => 'reed://'
openFeed({
url: 'feed-url.com',
})
// => 'reed://feed-url.com'