core-pegjs

Core PEGjs

Usage no npm install needed!

<script type="module">
  import corePegjs from 'https://cdn.skypack.dev/core-pegjs';
</script>

README

Core PEGjs Build Status

A collection of core PEGjs grammars (IETF, ISO, etc.)

Wherever there are ABNF specifications, the ABNF rules MUST simply ported to PEGjs without any semantic modification.

This is part of a bigger effort: for-GET HTTP.

Reason

The PEGs part of this library MUST have no actions (code), in order to make them reusable, outside the context in which they are used. Code and semantic output is to be implemented by libraries that reuse the syntax in these PEGs, thanks to the overrideAction PEGjs plugin.

An example of such libraries is API-PEGjs.

Extension

PEGjs doesn't allow for composability (referencing other grammars).

This library makes use of an @append marker/instruction to concatenate multiple grammars into one, before publishing.

This is a workaround. As soon as https://github.com/dmajda/pegjs/issues/38 is closed, you can expect a breaking change, if the situation so needs.

License

Apache 2.0