What is chevrotain?
Chevrotain is a fast and feature-rich parser building toolkit for JavaScript. It can be used to build parsers for DSLs, programming languages, data formats, and more. It provides a set of APIs for defining grammar rules and constructing a parser based on those rules.
What are chevrotain's main functionalities?
Defining Token Types
This code sample demonstrates how to define token types using Chevrotain. Tokens are the basic building blocks of the syntax for a language or format. In this example, we define tokens for integers and the plus and minus symbols.
const { createToken, Lexer } = require('chevrotain');
const Integer = createToken({ name: 'Integer', pattern: /\d+/ });
const Plus = createToken({ name: 'Plus', pattern: /\+/ });
const Minus = createToken({ name: 'Minus', pattern: /-/ });
const allTokens = [Plus, Minus, Integer];
const MyLexer = new Lexer(allTokens);
Building a Parser
This code sample shows how to build a parser using Chevrotain. The parser is defined as a class that extends `CstParser` and uses rules to define the grammar of the language. In this example, we define a simple grammar for addition expressions.
const { CstParser } = require('chevrotain');
class MyParser extends CstParser {
constructor() {
super(allTokens);
this.RULE('expression', () => {
this.SUBRULE(this.additionExpression);
});
this.RULE('additionExpression', () => {
this.CONSUME(Integer);
this.MANY(() => {
this.OR([
{ ALT: () => { this.CONSUME(Plus); this.CONSUME2(Integer); } },
{ ALT: () => { this.CONSUME(Minus); this.CONSUME2(Integer); } }
]);
});
});
this.performSelfAnalysis();
}
}
const parser = new MyParser();
Parsing Text
This code sample illustrates how to parse text using a lexer and parser defined with Chevrotain. The text is tokenized by the lexer, and then the tokens are fed into the parser to produce a Concrete Syntax Tree (CST), which can be used for further processing such as interpretation or transformation into an Abstract Syntax Tree (AST).
const { tokenMatcher } = require('chevrotain');
const text = '1 + 2 - 3';
const lexingResult = MyLexer.tokenize(text);
if (lexingResult.errors.length === 0) {
parser.input = lexingResult.tokens;
const cst = parser.expression();
if (parser.errors.length === 0) {
// cst can now be used to create an AST or for interpretation.
} else {
// parser errors are present
}
} else {
// lexing errors are present
}
Other packages similar to chevrotain
pegjs
PEG.js is a simple parser generator for JavaScript that produces fast parsers with excellent error reporting. It uses Parsing Expression Grammars (PEG) as the input. Compared to Chevrotain, PEG.js has a different approach to defining grammars (PEG vs. Chevrotain's API) and does not require manual token definition.
antlr4
ANTLR (ANother Tool for Language Recognition) is a powerful parser generator that can be used to read, process, execute, or translate structured text or binary files. It's widely used to build languages, tools, and frameworks. ANTLR4 has a Java-based toolchain with targets for multiple languages including JavaScript. It is more complex than Chevrotain and has a steeper learning curve, but it is also more feature-rich.
jison
Jison is an API for creating parsers in JavaScript that works similarly to yacc. It takes a context-free grammar as input and outputs a JavaScript file capable of parsing the language described by that grammar. Jison handles both lexical and syntactical analysis, which means it combines the features of both lexer and parser generators. It is less modular than Chevrotain but can be easier to use for those familiar with yacc or bison.
nearley
Nearley is a simple, fast, and powerful parsing toolkit for JavaScript. It is based on Earley's algorithm, which is suitable for parsing complex and ambiguous grammars. Nearley is designed to be more user-friendly and flexible than traditional parser generators. It allows for dynamic grammar and can handle any kind of parsing task. It is comparable to Chevrotain in terms of ease of use but uses a different underlying algorithm for parsing.
Chevrotain
Chevrotain is a high performance fault Tolerant Javascript parsing DSL for building recursive decent parsers.
Chevrotain is NOT a parser generator. it solves the same kind of problems as a parser generator, just without
the code generation phase.
Features
-
Lexer engine based on RexExps.
- Supports Token location tracking.
- Supports Token skipping (whitespace/comments/...)
- Allows prioritising shorter matches (Keywords vs Identifiers).
- No code generation The Lexer does not require any code generation phase.
-
Parsing DSL for creating the parsing rules.
- No code generation - the DSL is just javascript not a new external language, what is written is what will be run, this speeds up development,
makes debugging trivial and provides great flexibility for inserting custom actions into the grammar.
- Strong Error Recovery capabilities based on Antlr3's algorithms.
- Automatic lookahead calculation for LL(1) grammars.
- In addition custom lookahead logic can be provided explicitly.
- Backtracking support.
-
High performance see:
-
Grammar Introspection, the grammar's structure is known and exposed this can be used to implement features such as automatically generated syntax diagrams or Syntactic error recovery.
-
Well tested with ~100% code coverage
Installation
- npm:
npm install chevrotain
- Bower
bower install chevrotain
- or download directly from github releases:
- the 'chevrotain-binaries-...' files contain the compiled javascript code.
Getting Started
Online version
Related Repos
Runnable (and debuggable) examples:
Documentation
Dependencies
Only a single dependency to lodash.
Compatibility
The Generated artifact(chevrotain.js) should run on any modern Javascript ES5.1 runtime.
- The CI build runs the tests under Node.js.
- Additionally local testing is done on latest versions of Chrome/Firefox/IE.
- The dependency to lodash is imported via UMD,
in order to make chevrotain.js portable to multiple environments.