From 5b7f65817eadfee3a7b083defc96c9412dcc736e Mon Sep 17 00:00:00 2001 From: David Harris Date: Wed, 29 Apr 2015 23:27:24 -0700 Subject: [PATCH] Add `nearley` nearley is the first JS parser to use the Earley algorithm and processes left recursion without choking --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 1f15019..57a3258 100644 --- a/readme.md +++ b/readme.md @@ -372,6 +372,7 @@ Inspired by the [awesome](https://github.com/sindresorhus/awesome) list thing. - [PEG.js](https://github.com/dmajda/pegjs) - Simple parser generator that produces fast parsers with excellent error reporting. - [binary-extract](https://github.com/juliangruber/binary-extract) - Extract a value from a buffer of JSON without parsing the whole thing. - [x-ray](https://github.com/lapwinglabs/x-ray) - A web scraping utility to see through the `` noise. +- [nearley](https://github.com/Hardmath123/nearley) - Simple, fast, powerful parsing for JavaScript. ### Humanize