pegjs/packages/pegjs
2019-01-01 13:57:33 +00:00
..
bin Use input/output from the config file 2018-09-14 03:43:09 +01:00
lib Export utils explicitly 2019-01-01 13:57:33 +00:00
typings Document filename option for generated parsers 2018-10-15 07:20:33 +01:00
LICENSE Move PEG.js to packages/pegjs 2018-09-08 02:39:12 +01:00
package.json Move PEG.js to packages/pegjs 2018-09-08 02:39:12 +01:00
README.md Set up CI with Azure Pipelines (#596) 2019-01-01 12:26:41 +00:00

Build Status Test Coverage coverage Maintainability license

PEG.js is a simple parser generator for JavaScript that produces fast parsers with excellent error reporting. You can use it to process complex data or computer languages and build transformers, interpreters, compilers and other tools easily.

PEG.js is still very much work in progress. There are no compatibility guarantees until version 1.0

features

  • Simple and expressive grammar syntax
  • Integrates both lexical and syntactical analysis
  • Parsers have excellent error reporting out of the box
  • Based on parsing expression grammar formalism - more powerful than traditional LL(k) and LR(k) parsers
  • Usable from your browser, from the command line, or via JavaScript API

documentation

license

Released under the MIT License.

Copyright (c) 2010-2016 David Majda
Copyright (c) 2017+ Futago-za Ryuu