Awesome Go

mini

CategoryConfiguration
SubcategoryLibraries for configuration parsing.
Stars35

Golang package for parsing ini-style configuration files.

About mini

Mini

Build Status GoDoc

Mini is a simple ini configuration file parser.

The ini syntax supported includes:

  • The standard name=value
  • Comments on new lines starting with # or ;
  • Blank lines
  • Sections labelled with [sectionname]
  • Split sections, using the same section in more than one place
  • Encoded strings, strings containing \n, \t, etc...
  • Array values using repeated keys named in the form key[]=value
  • Global key/value pairs that appear before the first section

Repeated keys, that aren't array keys, replace their previous value.

To use simply:

% go get github.com/sasbury/mini

Frequently Asked Questions

What is mini?

mini is a Configuration library for the Go programming language. Golang package for parsing ini-style configuration files.

How do I install mini?

Install mini with the Go module system using `go get sasbury/mini`. Check the repository for the current installation instructions.

What category does mini belong to?

mini is listed under Configuration, specifically Libraries for configuration parsing..

← Back to Libraries for configuration parsing.