parexgram-js

0.2.6 • Public • Published

parexgram.js

🔠 Parsing Expression Grammars for JS

NPM

HitCount

Platform Build Status
Linux Build Status
Windows Build status

codecov

Known Vulnerabilities devDependencies Status

Install

NPM

npm i parexgram-js

CDN

<script style="https://cdn.jsdelivr.net/npm/parexgram-js/dist/index.min.js"></script>

Usage

Loading the module

CommonJS

const Parexgram = require('parexgram-js');

Browser

The Browser version provides an object named 'Parexgram' which you can use to access the provided classes.

Using the classes

Feed

Feed serves as the consumable string for the Parexgram. Matchers relies on a Feed for extracting/consuming strings. If a Matcher successfully consumes the Feed prefix, the Feed value changes.

const feed = new Feed('some expression');

CharSet

CharSet is a Matcher class which extracts an exact sequence of a string from the Feed prefix.

If a CharSet attempts to consume the Feed, it will return the exact match if the match was successful, otherwise, the CharSet will return an undefined result.

const feed = new Feed('some expression');
console.log(new CharSet('some').parse(feed)); // some

Range

Range is a Matcher class which extracts a single character from the Feed prefix if the character lies within the Character range.

If a Range attempts to consume the Feed, it will return the character that matches, otherwise, undefined is returned.

const feed = new Feed('some expression');
console.log(new Range('a', 'z').parse(feed)); // s

Sequence

Sequence is a Matcher class which extracts an exact sequence of matches given a sequence of matchers from a Feed prefix.

If a CharSet attempts to consume the Feed, it will return the exact matches inside of an array if the match was successful, otherwise, the CharSet will return an undefined result.

const feed = new Feed('some expression');
const alpha = new Range('a', 'z');
console.log(new Sequence([alpha, alpha]).parse(feed)); // ['s', 'o'];

Alternation

Alternation is a Matcher class which extracts an exact match given a sequence of matchers from a Feed prefix. Unlike Sequence, Alternation will only return one of the matchers result.

const feed = new Feed('some expression');
const alpha = new Range('a', 'z');
console.log(new Alternation([alpha, alpha]).parse(feed)); // 's';

Quantifier

Quantifier is a Matcher class which extracts a series of matches by a given matcher from a Feed prefix. Given a range, if a Quantifier collects an amount of matches between the given range, the Quantifier returns an array of those matches, whereas if the Quantifier collects an amount less than the minimum boundary of the range, the Quantifier returns undefined.

const feed = new Feed('some expression');
const alpha = new Range('a', 'z');
console.log(new Quantifier(alpha, 0).parse(feed)); // ['s', 'o', 'm', 'e']

Pattern

Pattern is a Matcher class which extracts the Feed prefix if it matches the RegExp provided.

const feed = new Feed('some expression');
console.log(new Pattern('[a-z]+').parse(feed)); // ['s', 'o', 'm', 'e']

Matcher

Matcher is an interface used for the above classes. This signifies that the object can consume a Feed prefix. You can extend the Matcher to create your own custom Matcher.

Documentation

Online Documentation can be found at the official Doc Site.

Examples

Build

Clone the repo then run:

npm install

To build the docs, coverages, commonjs and browser module:

npm run build

Changelogs

0.2.0

  • Feed.peek(undefined) returns the rest of the Feed string.
  • Pattern class which allows the use of RegExp for matching Feeds.

Readme

Keywords

Package Sidebar

Install

npm i parexgram-js

Weekly Downloads

11

Version

0.2.6

License

MIT

Unpacked Size

50.1 kB

Total Files

6

Last publish

Collaborators

  • lxsmnsyc