Go packages indexer. It searches for Go packages in GOROOT and GOPATH directories and then responds to shorter package paths with full paths. Useful together with 'cd' and 'godoc' commands
$ go get github.com/abdel125/gopaths
$ go install github.com/abdel125/gopathsService start:
$ gopaths -http=:6118 &Search for a package:
$ curl :6118/imports/log
log
google.golang.org/appengine/internal/log
google.golang.org/appengine/logSearch for a directory containing the package:
$ curl :6118/dirs/rand
/Users/peter/go/src/crypto/rand
/Users/peter/go/src/math/randUpdate the index:
curl :6118/update
