Webbrowser provides a simple API for opening web pages on your default browser. It's inspired on Python's webbrowser package but lacks some of its features (open new window).
It just opens a webpage, most browsers will open it on a new tab.
Copy & Paste fans: go get github.com/toqueteos/webbrowser
Just import the package (after you got it):
`import "github.com/toqueteos/webbrowser"`
Then use the Open
function.
`Open("http://golang.org")`
Just in case, you have a very simple example on examples/simple.go
.