jconf The golang-package for working with configuration json files Get started go get github.com/toolsparty/jconf Example // ... config, err := NewConfig("./config.json") if err != nil { panic(err) } name, err := config.Get("name") if err != nil { panic(err) } // ...