Chevrotain is a very fast and feature rich Parser Building Toolkit for JavaScript. It can be used to build parsers/compilers/interpreters for various use cases ranging from simple configuration files, to full fledged programing languages.
A more in depth description of Chevrotain can be found in this great article on: Parsing in JavaScript: Tools and Libraries.
It is important to note that Chevrotain is NOT a parser generator. It solves the same kind of problems as a parser generator, just without any code generation. Chevrotain Grammars are pure code which can be created/debugged/edited as any other pure code without requiring any new tools or processes.
Parsing DSL.
Lexer Engine
Grammar Reflection/Introspection.
Well tested with ~100% code coverage, Unit & Integration tests
npm install chevrotain
https://unpkg.com/chevrotain/lib/chevrotain.js
https://unpkg.com/chevrotain/lib/chevrotain.min.js
https://unpkg.com/chevrotain@2.0.0/lib/chevrotain.js
https://unpkg.com/chevrotain@2.0.0/lib/chevrotain.min.js
FAQ.
None.
Chevrotain should run on any modern JavaScript ES5.1 runtime.
The CI build runs the tests under:
Uses UMD to work with common module loaders (browser global / amd / commonjs).
Contributions are greatly appreciated. See CONTRIBUTING.md for details
Some interesting samples:
Generated using TypeDoc