go-portfinder: Go implementation of npm portfinder
Prasanna Kumar
Posted on April 14, 2021
Go implementation of npm portfinder. A simple tool to find an open port on the current machine.
Installation
$ go get github.com/pgollangi/go-portfinder
Usage
package main
import (
"github.com/pgollangi/go-portfinder"
)
func main(){
// scans and returns first open port on all network interfaces of current machine.
openPort, err := portfinder.GetPort(&PortFinderOptions {
StartPort: 9090,
StopPort: 9099
})
}
💖 💪 🙅 🚩
Prasanna Kumar
Posted on April 14, 2021
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.