Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olebedev/config
JSON or YAML configuration wrapper with convenient access methods.
https://github.com/olebedev/config
configuration golang json yaml
Last synced: 5 days ago
JSON representation
JSON or YAML configuration wrapper with convenient access methods.
- Host: GitHub
- URL: https://github.com/olebedev/config
- Owner: olebedev
- License: other
- Created: 2014-04-21T15:09:39.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-08-22T22:13:14.000Z (about 2 years ago)
- Last Synced: 2024-10-22T22:53:37.135Z (12 days ago)
- Topics: configuration, golang, json, yaml
- Language: Go
- Homepage:
- Size: 46.9 KB
- Stars: 267
- Watchers: 10
- Forks: 43
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-go - config - JSON or YAML configuration wrapper with environment variables and flags parsing. (Configuration / Standard CLI)
- awesome-go - config - JSON or YAML configuration wrapper with environment variables and flags parsing. (Configuration / Standard CLI)
- awesome-go - config - JSON or YAML configuration wrapper with convenient access methods. - ★ 178 (Configuration)
- awesome-go-extra - config - 04-21T15:09:39Z|2022-08-22T22:13:14Z| (Configuration / Advanced Console UIs)
README
# Config [![wercker status](https://app.wercker.com/status/b4e8561d9a711afcb016bf0018e83897/s/ "wercker status")](https://app.wercker.com/project/bykey/b4e8561d9a711afcb016bf0018e83897) [![GoDoc](https://godoc.org/github.com/olebedev/config?status.png)](https://godoc.org/github.com/olebedev/config)
Package config provides convenient access methods to configuration
stored as JSON or YAML.This is a fork of the [original version](https://github.com/moraes/config).
This version extends the functionality of the original without losing compatibility.
Major features added:- [`Set(path string, value interface{}) error`](http://godoc.org/github.com/olebedev/config#Config.Set) method
- [`Env() *config.Config`](http://godoc.org/github.com/olebedev/config#Config.Env) method, for OS environment variables parsing
- [`Flag() *config.Config`](http://godoc.org/github.com/olebedev/config#Config.Flag) method, for command line arguments parsing usign pkg/flag singleton
- [`Args(args ...string) *config.Config`](http://godoc.org/github.com/olebedev/config#Config.Args) method, for command line arguments parsing
- [`U*`](https://godoc.org/github.com/olebedev/config#Config.UBool) methods
- [`Copy(...path) (*config.config, error)`](https://godoc.org/github.com/olebedev/config#Config.Copy) method
- [`Extend(*config.Config) (*config.Config, error)`](https://godoc.org/github.com/olebedev/config#Config.Extend) method
- [`Error() error`](https://godoc.org/github.com/olebedev/config#Config.Error) method to show last parsing error, works only with `.Args()` methodExample and more information you can find [here](http://godoc.org/github.com/olebedev/config).