-
Notifications
You must be signed in to change notification settings - Fork 230
/
index.html
545 lines (494 loc) · 23.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
<!DOCTYPE html>
<title>Home - nearley.js - JS Parsing Toolkit</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="nearley.js is a simple, fast, and powerful parser toolkit for JavaScript." />
<style>
body {
font-family: BlinkMacSystemFont, -apple-system, Helvetica Neue, Open Sans, Ubuntu, Arial, Helvetica, sans-serif;
font-weight: 300;
font-size: 15pt;
margin: 0px;
padding: 0px;
}
#main a {
color: #55a;
}
#main a:visited {
color: #55a;
}
#main a:hover {
color: #259;
}
h1 {
font-size: 1.2em;
font-weight: normal;
letter-spacing: 0.2em;
text-align: center;
margin: 0em;
padding: 1em;
}
h1 a {
color: #559;
text-decoration: none;
}
h1 a:hover {
color: orange;
cursor: pointer;
}
#version {
background: orange;
border-radius: 50%;
font-weight: bold;
color: white;
width: 3em;
height: 3em;
display: inline-block;
text-align: center;
line-height: 3em;
letter-spacing: 0em;
}
h2 {
font-size: 1.5em;
margin-top: 2em;
}
h3 {
margin-top: 3em;
}
h4 {
margin-top: 3em;
}
.center {
padding-left: 2em;
padding-right: 2em;
margin-left: auto;
margin-right: auto;
}
#main {
max-width: 35em;
}
#main p, ul, ol {
line-height: 1.5em;
margin-bottom: 1em;
}
#main li {
margin-top: 1em;
margin-bottom: 1em;
}
#main ul li {
list-style: none;
min-width: 10em;
}
#main ul li:before {
display: inline-block;
content: "\2014";
margin-left: -1.5em;
width: 1.5em;
position: absolute;
}
#main textarea {
width: 100%;
height: 20em;
resize: none;
margin-top: 5px;
margin-bottom: 5px;
font-family: menlo, monaco, monospace;
font-size: 10pt;
padding: 5px;
border: none;
border-left: solid 1px #aaa;
}
#main textarea:focus {
outline: none;
}
#main img {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 100%;
}
img + .caption {
text-align: center;
font-size: 0.7em;
color: #aaa;
}
#footer {
margin-top: 10em;
color: #aaa;
font-size: 0.7em;
padding: 5em;
}
code {
margin-left: 0.2em;
margin-right: 0.2em;
padding: 0.2em;
border-radius: 0.2em;
background-color: #eee;
}
pre code {
border-radius: 0.5em;
padding: 0.5em;
display: block;
overflow: auto;
}
ol {
counter-reset: tutorial-counter;
position: relative;
}
ol li {
list-style: none;
}
ol li:before {
content: counter(tutorial-counter);
counter-increment: tutorial-counter;
font-weight: bold;
border-radius: 50%;
background-color: #559;
width: 2em;
height: 2em;
display: inline-block;
text-align: center;
line-height: 2em;
color: white;
margin-left: -2em;
position: absolute;
left: 1em;
}
input[type="text"] {
border: none;
font-family: monospace;
font-size: 1em;
color: #559;
}
input[type="text"]:focus {
outline: none;
}
nav {
border-bottom: 2px solid #559;
background: #fafafa;
}
nav ul {
padding: 0;
margin: 0;
}
nav ul a {
text-decoration: none;
color: #334;
display: block;
overflow: hidden;
text-overflow: ellipsis;
padding: 0.25em 0.5em; */
}
.page {
display: block;
}
.page-title-active,
.page-heading-active a {
color: #66f;
}
.page-heading {
display: block;
padding-left: 1.5em;
}
@media screen and (min-width: 36rem) {
nav {
position: fixed;
width: 16rem;
left: 0;
top: 0;
bottom: 0;
white-space: nowrap;
overflow-y: auto;
font-size: 1rem;
border-bottom: none;
border-right: 2px solid #559;
}
body.docs-page {
margin-left: 16rem;
}
}
/* highlight.js */
.hljs{display:block;overflow-x:auto;padding:0.5em;background:#F0F0F0}.hljs,.hljs-subst{color:#444}.hljs-comment{color:#888888}.hljs-keyword,.hljs-attribute,.hljs-selector-tag,.hljs-meta-keyword,.hljs-doctag,.hljs-name{font-weight:bold}.hljs-type,.hljs-string,.hljs-number,.hljs-selector-id,.hljs-selector-class,.hljs-quote,.hljs-template-tag,.hljs-deletion{color:#880000}.hljs-title,.hljs-section{color:#880000;font-weight:bold}.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr,.hljs-selector-pseudo{color:#BC6060}.hljs-literal{color:#78A960}.hljs-built_in,.hljs-bullet,.hljs-code,.hljs-addition{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta-string{color:#4d99bf}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold}
</style>
<body class="docs-page">
<a href="https://github.com/kach/nearley" class="github-corner"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style>
<nav id="nav">
<h1><a href="/">nearley<span style="color: #559;">.js</span><span id="version">2.20.1</span></a></h1>
<ul>
<li class="page">
<a href="#" class="page-title-active">Home</a>
<ul>
<li class="page-heading"><a href="#nearley-101">nearley 101</a>
<li class="page-heading"><a href="#features">Features</a>
<li class="page-heading"><a href="#projects-using-nearley">Projects using nearley</a>
<li class="page-heading"><a href="#give-to-nearley">Give to nearley</a>
</ul>
</li>
<li class="page"><a href="/docs/getting-started">Getting started</a>
<li class="page"><a href="/docs/grammar">Writing a parser</a>
<li class="page"><a href="/docs/parser">Using a parser</a>
<li class="page"><a href="/docs/tokenizers">Tokenizers</a>
<li class="page"><a href="/docs/tooling">Tooling</a>
<li class="page"><a href="/docs/how-to-grammar-good">How to grammar good</a>
<li class="page"><a href="/docs/using-in-frontend">Compiling in browsers</a>
<li class="page"><a href="/docs/glossary">Glossary</a>
</ul>
</nav>
<div id="main" class="center">
<h2>Home</h2>
<p><strong>Parsers</strong> turn strings of characters into meaningful data structures (like a
JSON object!). <strong>nearley</strong> is a <strong>fast</strong>, <strong>feature-rich</strong>, and <strong>modern</strong>
parser toolkit for JavaScript. nearley is an <a href="https://github.com/npm/npm-collection-staff-picks">npm Staff
Pick</a>.</p>
<h3 id="nearley-101">nearley 101</h3>
<ol>
<li>Install: <code>$ npm install -g nearley</code> (or try nearley live in your browser
<a href="https://omrelli.ug/nearley-playground/">here</a>!)</li>
<li>Write your grammar:<pre><code class="language-ne"># Match a CSS color
# http://www.w3.org/TR/css3-color/#colorunits
@builtin "whitespace.ne" # `_` means arbitrary amount of whitespace
@builtin "number.ne" # `int`, `decimal`, and `percentage` number primitives
csscolor -> "#" hexdigit hexdigit hexdigit hexdigit hexdigit hexdigit
| "#" hexdigit hexdigit hexdigit
| "rgb" _ "(" _ colnum _ "," _ colnum _ "," _ colnum _ ")"
| "hsl" _ "(" _ colnum _ "," _ colnum _ "," _ colnum _ ")"
| "rgba" _ "(" _ colnum _ "," _ colnum _ "," _ colnum _ "," _ decimal _ ")"
| "hsla" _ "(" _ colnum _ "," _ colnum _ "," _ colnum _ "," _ decimal _ ")"
hexdigit -> [a-fA-F0-9]
colnum -> int | percentage</code></pre>
</li>
<li>Compile your grammar:<pre><code class="language-bash">$ nearleyc csscolor.ne -o csscolor.js</code></pre>
</li>
<li>Test your grammar:<pre><code class="language-bash">$ nearley-test -i "#00ff00" csscolor.js
Parse results:
[ [ '#', [ '0' ], [ '0' ], [ 'f' ], [ 'f' ], [ '0' ], [ '0' ] ] ]</code></pre>
</li>
<li>Turn your grammar into a generator:<pre><code class="language-bash">$ nearley-unparse -n 3 csscolor.js</code></pre>
<pre><code>#Ab21F2
rgb ( -29.889%,7,8172)
#a40</code></pre></li>
<li>You try it! Type a CSS color here:<input type="text" id="parse-input" placeholder="rgba(0, 255, 0, 0.5)" />
<pre><code id="parse-output">…and the parsed output will appear here!</code></pre></li>
<li>Create beautiful railroad diagrams to document your grammar formally.<pre><code class="language-bash">$ nearley-railroad csscolor.ne -o csscolor.html</code></pre>
See a demo <a href="/www/railroad-demo">here</a>.</li>
</ol>
<h3 id="features">Features</h3>
<ul>
<li>nearley is the first JS parser to use the <strong>Earley</strong> algorithm (insert your
own ‘early bird’ pun here). It also implements Joop Leo’s optimizations for
right-recursion, making it effectively <strong>linear-time</strong> for LL(k) grammars.</li>
<li>nearley lives happily in <strong>node</strong>, but doesn’t mind the <strong>browser</strong>.</li>
<li>nearley outputs <strong>small</strong> files. And its <strong>expressive</strong> DSL comes with
plenty of <strong>syntactic sugar</strong> to keep your source files short. And sweet.</li>
<li>nearley’s grammar language is powerful and expressive: you can use
<strong>macros</strong>, import from a large <strong>builtin library</strong> of pre-defined
parser-pieces, use a <strong>tokenizer</strong> for extra performance, and more!</li>
<li>nearley is built on an idiomatic <strong>streaming API</strong>. You even have access to
partial parses to build <strong>predictive</strong> user interfaces.</li>
<li>nearley processes <strong>left recursion</strong> without choking. In fact, nearley will
parse anything you throw at it without complaining or going into a <del>sulk</del>
infinite loop.</li>
<li>nearley handles <strong>ambiguous grammars</strong> gracefully. Ambiguous grammars can
be parsed in multiple ways: instead of getting confused, nearley gives you
all the parsings (in a deterministic order!).</li>
<li>nearley allows for debugging with generous <strong>error detection</strong>. When it
catches a parse-time error, nearley tells you exactly what went wrong and
where.</li>
<li>nearley is powerful enough to be <strong>bootstrapped</strong>. That means nearley uses
nearley to compile parts of nearley. <em>nearleyception!</em></li>
<li>nearley parsers can be inverted to form <strong>generators</strong> which output random
strings that match a grammar. Useful for writing <strong>test cases</strong>,
<strong>fuzzers</strong>, and <strong>Mad-Libs</strong>.</li>
<li>You can export nearley parsers as <strong>railroad diagrams</strong>, which provide
easy-to-understand documentation of your grammar.</li>
<li>nearley comes with fantastic tooling. You can find editor plug-ins for
<strong>vim</strong>, <strong>Sublime Text</strong>, <strong>Atom</strong>, and <strong>VS Code</strong>; there are also
plug-ins for <strong>Webpack</strong> and <strong>gulp</strong>.</li>
</ul>
<h3 id="projects-using-nearley">Projects using nearley</h3>
<p><strong>Artificial Intelligence, NLP, Linguistics</strong>:
<a href="https://github.com/ChalmersGU-AI-course/shrdlite-course-project">Shrdlite</a> is
a programming project in Artificial Intelligence, a course given at the
University of Gothenburg and Chalmers University of Technology. It uses nearley
for reading instructions in natural language (i.e. English).
<a href="https://github.com/fauxneticien/lexicon-grammars">lexicon-grammars</a> was used
to parse lexicons for a project at Australian National University.</p>
<p><strong>Standard formats</strong>: <a href="https://github.com/raymond-h/node-dmi">node-dmi</a> is a
module that reads iconstate metadata from BYOND DMI files,
<a href="https://github.com/inukshuk/edtf.js">edtf.js</a> is a parser for Extended Date
Time Format, <a href="https://github.com/farskipper/node-krl-parser">node-krl-parser</a>
is a KRL parser for node,
<a href="https://github.com/digitalheir/bibliography-js">bibliography</a> is a
BibTeX-to-HTML converter,
<a href="https://github.com/fiduswriter/biblatex-csl-converter">biblatex-csl-converter</a>
converts between bibtex/CSL/JSON, <a href="https://github.com/gajus/scalpel">scalpel</a>
parses CSS selectors (powering <a href="https://github.com/airbnb/enzyme">enzyme</a>,
Airbnb’s React testing tool),
<a href="https://github.com/waratuman/rfc5545-rrule">rfc5545-rrule</a> helps parse
iCalendar data, <a href="https://github.com/mangudai/mangudai">mangudai</a> parses RMS
scripts for Age of Empires II, <a href="https://github.com/r24y/tf-hcl">tf-hcl</a> parses
and generates HCL config files,
<a href="https://github.com/balbuf/css-selector-inspector">css-selector-inspector</a>
parses and tokenizes CSS3 selectors,
<a href="https://github.com/mahirshah/css-property-parser">css-property-parser</a>
validates and expands CSS shorthands,
<a href="https://github.com/hhornbacher/node-scad-parser">node-scad-parser</a> parses
OpenSCAD 3D models, <a href="https://github.com/justinkenel/js-sql-parse">js-sql-parse</a>
parses SQL statements, <a href="https://github.com/oguimbal/pg-mem">pg-mem</a> is an in-memory Postgres database emulator, <a href="https://github.com/appology/resp-parser">resp-parser</a> is
a parser for the RESP protocol, <a href="https://github.com/AntonShan/Celio">celio</a>
parses Celestia star catalogs, <a href="http://haraka.github.io/users/">Haraka</a> is an
SMTP server that powers Craigslist (and others).</p>
<p><strong>Templating and files</strong>: <a href="https://github.com/bobbybee/uPresent">uPresent</a> is a
markdown-based presentation authoring system,
<a href="https://github.com/rtsao/saison">saison</a> is a minimal templating language,
<a href="https://github.com/imsky/packdown">Packdown</a> is a tool to generate
human-readable archives of multiple files.</p>
<p><strong>Programming languages</strong>: <a href="https://github.com/bobbybee/carbon">Carbon</a> is a C
subset that compiles to JavaScript, optimized for game development,
<a href="https://github.com/tleb/ezlang">ezlang</a> is a simple language,
<a href="https://github.com/liam4/tlnccuwagnf">tlnccuwagnf</a> is a fun general-purpose
language, <a href="https://github.com/nanalan/g">nanalang</a> is a silly esoteric
language, <a href="https://github.com/nanalan/english">english</a> is a less esoteric
programming language, <a href="https://github.com/farskipper/ecmaless">ecmaless</a> is an
easily-extensible language, <a href="https://github.com/xodio/hm-parser">hm-parser</a>
parses Haskell-like Hindley-Milner type signatures,
<a href="https://github.com/kozily/web">kozily</a> implements the Oz language,
<a href="https://stefan1niculae.github.io/abstract-machine/">abstract-machine</a> inspects
execution models, <a href="https://github.com/Malpaux/fbp-types">fbp-types</a> provides
typechecking primitives for flow-based systems,
<a href="https://github.com/sizigi/lp5562">lp5562</a> is an assembler for the TI LP5562
LED driver, <a href="https://github.com/vsl-lang/VSL">VSL</a> is a Versatile Scripting
Language, <a href="https://github.com/juanlaube/while-typescript">while-typescript</a> is
an implementation of the WHILE language,
<a href="https://github.com/lo-language/velo">lo</a> is a language for secure distributed
systems, <a href="https://github.com/calculemuscode/jaco">jaco</a> is an implementation of
CMU’s C0 teaching language, <a href="https://github.com/ballercat/walt">walt</a> is a
subset of JavaScript that targets WebAssembly,
<a href="https://github.com/nbuilding/N-lang">N-lang</a> is a general-purpose language
designed by a group of high school students.</p>
<p><strong>Mathematics</strong>: <a href="https://github.com/andrejewski/solvent">Solvent</a> is a
powerful desktop calculator,
<a href="https://github.com/andrejewski/truth-table">Truth-table</a> is a tool to
visualize propositional logic in truth tables, <a href="http://emunotes.com">Emunotes</a>
is a personal Wiki with inline graphing and computation,
<a href="https://kgram.github.io/react-equation/">react-equation</a> parses and renders
equations in React, <a href="https://github.com/cemulate/the-mlab">the mLab</a> generates
category theory papers.</p>
<p><strong>Domain-specific languages</strong>: <a href="https://github.com/jcorbin/hexant">Hexant</a> is a
cellular automata simulator with a DSL for custom automata,
<a href="https://github.com/justjake/dicetower">Dicetower</a> is an advanced dice plugin
for hubot, <a href="https://github.com/seiyria/deck.zone">deck.zone</a> is a language to
create board games, <a href="https://github.com/danigb/in-seconds">in-seconds</a> is a
time calculator for music applications,
<a href="https://github.com/bumbu/website-spec">website-spec</a> is a tool for functional
web testing, <a href="https://github.com/gajus/pianola">pianola</a> allows declarative
function composition, <a href="https://idyll-lang.github.io/idyll/">idyll</a> is a markup
language for data-driven documents,
<a href="https://github.com/affinipay/virtsecgroup">virtsecgroup</a> provides virtual AWS
security groups, <a href="https://github.com/Pwootage/deadfad">deadfad</a> is a hex editor
that lets you specify structs,
<a href="https://github.com/juliankrispel/bishbosh">bishbosh</a> helps you create
command-line interfaces, <a href="https://github.com/sgmap/syso">syso</a> codifies aspects
of French legal contracts,
<a href="https://github.com/independentgeorge/siteswap.js">siteswap</a> parses Siteswap
notation for juggling patterns, <a href="https://github.com/amireh/jsgrep">jsgrep</a>
provides syntactic grep for JavaScript,
<a href="https://github.com/monostable/electro-grammar">electro-grammar</a> parses
descriptions of electronic components like resistors and capacitors,
<a href="https://github.com/accordproject">cicero</a> helps create smart legal contracts,
<a href="https://geteventbot.com">Eventbot</a> is a calendar plugin for Slack used by
thousands of teams, <a href="https://github.com/byteball/ocore">Obyte</a> is a
cryptocurrency platform, <a href="https://github.com/linkedin/opticss">OptiCSS</a> is a
CSS optimizer built by LinkedIn,
<a href="https://github.com/cutelabnyc/nested-tuplets">Nestup</a> is a language for
specifying nested rhythmic tuplets,
<a href="https://www.npmjs.com/package/@adobe/htlengine">htlengine</a> parses Adobe’s HTL
template language,
<a href="https://github.com/awslabs/fhir-works-on-aws-search-es#readme">fhir-works</a>
is an AWS-provided tool to parse FHIRPath search parameters (FHIR is an
interface for healthcare data), <a href="http://www.penrose.ink">Penrose</a> is a language
for expressing mathematical diagrams,
<a href="https://github.com/mimic-sussex/sema">sema</a> is a DSL for live-coding music
performances, <a href="https://github.com/bandaloo/tinsl">tinsl</a> is a DSL for creating
multi-pass rendering pipelines for real-time post-processing effects using
GLSL-like syntax.</p>
<p><strong>Other</strong>:
<a href="https://github.com/PatrickMurphy/ProceduralPsychEpisode">ProceduralPsychEpisode</a>
generates “random episodes of the hilarious but formulaic show,”
<a href="https://www.npmjs.com/package/parse-vbb-station-name">parse-vbb-station-name</a>
parses names of public transit stops in Berlin.</p>
<p><strong>Parsing libraries</strong>: <a href="http://nearley.js.org">nearley</a> is a parser toolkit for
JavaScript. It has a nearley-based DSL to specify parsers.</p>
<!--Excited? Get started on [Github](https://github.com/Hardmath123/nearley),
visit us on [npm](http://npmjs.org/package/nearley), explore nearley in your
browser on the [playground](https://omrelli.ug/nearley-playground/), or try out
the [calculator demo](examples/calculator/) for more action.-->
<h3 id="give-to-nearley">Give to nearley</h3>
<p>nearley has been maintained by volunteers since 2014. If you want to help
support us, contact <strong>@kach</strong> or <strong>@tjvr</strong> on GitHub. We’ll send over our
PayPal information – and maybe something nice. :-).</p>
<div id="footer"><p>nearley is MIT-licensed. It's maintained by <a
href="http://hardmath123.github.io">Hardmath123</a> (<a
href="http://github.com/Hardmath123">Github</a>). You're welcome to
leave questions, comments, advice, or ideas as Github issues. And
feel free to fork nearley with your own experiments!<br/>
<a href="https://js.org" target="_blank" title="JS.ORG | JavaScript Community">
<img src="https://logo.js.org/dark_horz.png" width="102" alt="JS.ORG Logo"/></a>
</div>
<script id="highlight-js" async src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script>
document.querySelector('#highlight-js').addEventListener('load', function() {
[].slice.apply(document.querySelectorAll('pre code')).forEach(function(b) {
hljs.highlightBlock(b)
})
})
</script>
<script charset="utf-8" src="/lib/nearley.js"></script>
<script charset="utf-8" src="/examples/js/csscolor.js"></script>
<script type="text/javascript">
window.addEventListener('load', function() {
document.getElementById('parse-input').addEventListener('keyup', function() {
// $ ./bin/nearleyc.js examples/csscolor.ne -o examples/js/csscolor.js
var str = this.value;
var parser = new nearley.Parser(grammar.ParserRules, grammar.ParserStart);
try {
parser.feed(str);
document.getElementById('parse-output').innerHTML = JSON.stringify(parser.results, null, 2);
this.style.color = "#559";
} catch(e) {
document.getElementById('parse-output').innerHTML = "";
this.style.color = "red";
}
}, false);
}, false);
</script>
<script>
window.addEventListener('scroll', onScroll)
window.addEventListener('resize', onScroll)
var timeout
function onScroll(e) {
if (timeout) clearTimeout(timeout)
timeout = setTimeout(scrollEnd, 50)
}
function scrollEnd() {
var headings = document.querySelectorAll('h3')
var offset = 60
for (var i=headings.length; i--; ) {
var h3 = headings[i]
if (h3.offsetTop < window.scrollY + offset) {
var cur = document.querySelector('.page-heading-active')
if (cur) cur.className = 'page-heading'
document.querySelector('a[href="#' + h3.id + '"]').parentNode.className = 'page-heading page-heading-active'
return
}
}
}
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46120535-5', 'auto');
ga('send', 'pageview');
</script>