Orion Browser
Orion Browser is a WebKit browser from Kagi for Apple devices. Protocol Launcher allows you to generate deep links to open URLs and search in Orion Browser for iOS.
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
This module follows Orion Browser's official FAQ, which documents the iOS orion://open-url?url=url and orion://search?q=query schemes.
Open URL
ts
import { openUrl } from 'protocol-launcher/orion-browser'
const url = openUrl({
url: 'https://browser.kagi.com/',
})Search
ts
import { search } from 'protocol-launcher/orion-browser'
const url = search({
query: 'privacy browser',
})