Skip to content

bryanl/webbrowser

Repository files navigation

webbrowser

Go library for opening URLs using a web browser. Currently supports Linux, OSX, and Windows.

Documentation

The API documentation can be found at http://godoc.org/github.com/bryanl/webbrowser.

Example

package main

import (
    "log"

    "github.com/bryanl/webbrowser"
)

func main() {
    err := webbrowser.Open("http://blil.es", webbrowser.NewTab, true)
    if err != nil {
        log.Println("open failed:", err)
    }
}

~

About

go library for opening URLs in web browsers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages