nasermirzaei89/env alternatives and similar packages
Based on the "Configuration" category.
Alternatively, view nasermirzaei89/env alternatives based on common mentions on social networks and blogs.
-
kelseyhightower/envconfig
Golang library for managing configuration data from environment variables -
env
A simple and zero-dependencies library to parse environment variables into structs -
ini
Package ini provides INI file read and write functionality in Go -
koanf
Simple, extremely lightweight, extensible, configuration management library for Go. Support for JSON, TOML, YAML, env, command line, file, S3 etc. Alternative to viper. -
cleanenv
✨Clean and minimalistic environment configuration reader for Golang -
konfig
Composable, observable and performant config handling for Go for the distributed processing era -
gookit/config
📝 Go configuration manage(load,get,set,export). support JSON, YAML, TOML, Properties, INI, HCL, ENV and Flags. Multi file load, data override merge, parse ENV var. Go应用配置加载管理,支持多种格式,多文件加载,远程文件加载,支持数据合并,解析环境变量名 -
confita
Load configuration in cascade from multiple backends into a struct -
GoLobby/Config
A lightweight yet powerful configuration manager for the Go programming language -
config
JSON or YAML configuration wrapper with convenient access methods. -
envconfig
Small library to read your configuration from environment variables -
gcfg
read INI-style configuration files into Go structs; supports user-defined types and subsections -
goConfig
goconfig uses a struct as input and populates the fields of this struct with parameters from command line, environment variables and configuration file. -
joshbetz/config
🛠 A configuration library for Go that parses environment variables, JSON files, and reloads automatically on SIGHUP. -
harvester
Harvest configuration, watch and notify subscriber -
go-aws-ssm
Go package that interfaces with AWS System Manager -
configuro
An opinionated configuration loading framework for Containerized and Cloud-Native applications. -
configuration
Library for setting values to structs' fields from env, flags, files or default tag -
hocon
go implementation of lightbend's HOCON configuration library https://github.com/lightbend/config -
configure
Configure is a Go package that gives you easy configuration of your project through redundancy -
uConfig
Lightweight, zero-dependency, and extendable configuration management library for Go -
go-up
go-up! A simple configuration library with recursive placeholders resolution and no magic. -
CONFLATE
Library providing routines to merge and validate JSON, YAML and/or TOML files -
go-ssm-config
Go utility for loading configuration parameters from AWS SSM (Parameter Store) -
Genv
Genv is a library for Go (golang) that makes it easy to read and use environment variables in your projects. It also allows environment variables to be loaded from the .env file. -
How to use
Your configuration library for your Go programs. -
subVars
Substitute environment variables from command line for template driven configuration files. -
swap
Instantiate/configure structs recursively, based on build environment. (YAML, TOML, JSON and env).
Learn any GitHub repo in 59 seconds
Do you think we are missing an alternative of nasermirzaei89/env or a related project?
Popular Comparisons
README
Env
Golang Get Environment Variables Package
Install
go get github.com/nasermirzaei89/env
Sample Usage
With default value
package main
import (
"fmt"
"github.com/nasermirzaei89/env"
)
func main() {
var b = env.GetBool("A", true)
fmt.Println(b) // true (default)
var f = env.GetFloat("B", 14.5)
fmt.Println(f) // 14.5 (default)
var i = env.GetInt("C", 12)
fmt.Println(i) // 12 (default)
var s = env.GetString("B", "hi")
fmt.Println(s) // hi (default)
}
Force setting environment
package main
import (
"fmt"
"github.com/nasermirzaei89/env"
)
func main() {
var s = env.MustGetString("HOME")
fmt.Println(s) // /Users/nasermirzaei89
s = env.MustGetString("NEW") // panics
}
Contributing
You can submit a new issue in github issues. Or you can create a fork, hack on your fork and when you're done create a pull request, so that the code contribution can get merged into the main package.
*Note that all licence references and agreements mentioned in the nasermirzaei89/env README section above
are relevant to that project's source code only.