/nginx-conf-parser

:page_with_curl: Nginx Configuration Files Parser

Primary LanguageJavaScript

nginx configuration file parser

yet another parser written on JS using jison

Usage

cd your-project-path
npm install -l nginx-conf-parser

and 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 ;-(