Monadic parser combinator library for JavaScript, inspired by (and almost clone of) Parsec.
Features
* Construct complex parser from simple parsers and combinators * Friendly syntax using generators, like do-notation in Haskell * Expression parser builder * Regular expression parser * Unicode aware * Extensions
Install
`` shell npm i --save loquat ``
Examples
* json.js: JSON parser * json_generators.js: JSON parser, using do-notation with generators * calc.js: Simple calculator, an example of expression parser builder