1.0.3 • Published 10 years ago
yaip v1.0.3
Yes, another ini parser!
An ANTLR parser for ini files
Instalation
npm install yaip --saveUsage
var yaip = require('yaip');
yaip.parse(myInput);
var json_ini = yaip.toJson();To more see the examples.
Test
npm test
//OR
npm run coverageBuild 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:testThis will re-build the parser and run test to check.