nginx-conf-parser
v0.1.1
Published
nginx config files parser based on jison
Readme
nginx configuration file parser
yet another parser written on JS using jison
Usage
cd your-project-path
npm install -l nginx-conf-parserand then just use it:
var nginxParser = require('nginx-conf-parser').parser;
var result = nginxParser.parse('server { server_name .example.host; }');
console.log(result); // yo. no async, sorry ;-(