yaip
v1.0.3
Published
A parser for ini file using ANTLR
Downloads
11
Readme
Yes, another ini parser!
An ANTLR parser for ini files
Instalation
npm install yaip --save
Usage
var yaip = require('yaip');
yaip.parse(myInput);
var json_ini = yaip.toJson();
To more see the examples.
Test
npm test
//OR
npm run coverage
Build Parser
This parser is based in ANTLR, so it has his own Grammar. If you want to change the grammar, you need to build again the parser files. To do this just run this:
npm run build:test
This will re-build the parser and run test to check.