name: golang-viper description: Go Viper configuration library (github.com/spf13/viper). Use when working with config file reading (SetConfigName, AddConfigPath, ReadInConfig), setting defaults, environment variable binding (SetEnvPrefix, AutomaticEnv, BindEnv), unmarshaling to structs (Unmarshal, UnmarshalKey, mapstructure tags), or any spf13/viper configuration management.
Golang Viper Configuration
Viper is Go's most popular configuration library. It handles config files, environment variables, defaults, and remote config stores with a unified API.
Config Precedence (highest to lowest)
viper.Set()- explicit runtime overrides- Command-line flags (via pflag)
- Environment variables
- Config files
- Remote key/value stores (etcd, Consul)
viper.SetDefault()- defaults
Quick Reference
// Basic setup
viper.SetConfigName("config") // filename without extension
viper.SetConfigType("yaml") // explicit format
viper.AddConfigPath(".") // search current dir
viper.AddConfigPath("$HOME/.myapp") // search home dir
// Set defaults before reading
viper.SetDefault("server.port", 8080)
// Read config
if err := viper.ReadInConfig(); err != nil {
if _, ok := err.(viper.ConfigFileNotFoundError); ok {
// Config file not found; use defaults
} else {
return fmt.Errorf("config error: %w", err)
}
}
// Get values
host := viper.GetString("server.host")
port := viper.GetInt("server.port")
debug := viper.GetBool("debug")
// Unmarshal to struct
var config Config
viper.Unmarshal(&config)
viper.UnmarshalKey("server", &config.Server)
Key Behaviors
- Keys are case-insensitive:
server.PORTandserver.portare the same - Env vars ARE case-sensitive:
APP_PORTdiffers fromapp_port - Nested keys use dots:
server.hostmaps to YAMLserver: { host: ... } - Not thread-safe: wrap concurrent access with mutex
References
Detailed documentation for each feature area:
references/core-config.md- Config files, paths, defaults, reading, multiple configsreferences/environment-vars.md- Env binding, prefixes, key replacers, AutomaticEnvreferences/unmarshaling.md- Structs, mapstructure tags, type getters, custom typesreferences/advanced-features.md- Watching changes, remote config, writing configs
Common Patterns
Multiple Config Files (config + secrets)
// Main config
viper.SetConfigName("config")
viper.ReadInConfig()
// Separate secrets file
secretsViper := viper.New()
secretsViper.SetConfigName("secrets")
secretsViper.AddConfigPath(".")
secretsViper.ReadInConfig()
Environment Variable Override
viper.SetEnvPrefix("MYAPP") // MYAPP_SERVER_PORT
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
viper.AutomaticEnv()