Skip to content

peeriq/ember-cli-pegjs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ember-cli-pegjs

An ember-cli addon for generating PegJS parser from grammar file.

Installation

npm install --save-dev @peeriq/ember-cli-pegjs

Usage

By default this addon will generate a parser for every file with the pegjs extension, the generated parser extension is js and will be located in the same folder as the grammar file.

The parser is exported as an ES6 module and can be simply imported as any other Ember CLI file.

You can control how the parser code is exported by specifying options using the pegOptions config property:

var app = new EmberApp({
  ...
  pegOptions: {
    wrapper: function (src, parser) {
      return 'var Parser = ' + parser + ";\nvar parse = Parser.parse, SyntaxError = Parser.SyntaxError;\nexport {SyntaxError, parse};\nexport default parse;";
    }
  }
});

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%