WebBrowser

master

Small Swift Library for opening URLs in default browser
oliveroneill/WebBrowser

WebBrowser

A small Swift library for opening URLs in the web browser from command line.

This was built for desktop Swift scripts and is compatible with Linux and macOS. I have not tested it on Linux yet.

Installation

Add this to your Package.swift:

.package(url: "https://github.com/oliveroneill/WebBrowser.git", .upToNextMajor(from: "1.0.0")),

Usage

import WebBrowser

do {
    try WebBrowser.open(url: URL(string: "http://google.com/")!)
} catch {
    // handle error
}

Description

  • Swift Tools 4.0.0
View More Packages from this Author

Dependencies

Last updated: Fri Mar 15 2024 14:09:11 GMT-0900 (Hawaii-Aleutian Daylight Time)