miff
v0.3.0
Published
minimal configuration file format
Downloads
30
Readme
miff
minimal configuration file format
key = value
[section1]
key = another value
number = 1.2
array = [item, "more item", [even, more]]
[section2.bools]
feature = on
boolean = off
on = true
off = falseusage
const miff = require('miff')parsing from string
const cfg = miff.parse(input)generating string from object
const string = miff.stringify(object)