Giter Site home page Giter Site logo

gulp-peg's Introduction

gulp-peg

Build Status

Gulp plugin for PEG parsers compilation.

Installation

Install plugin

npm install gulp-peg --save-dev

Add peg-compilation task into your gulp-file:

var $ = require('gulp-load-plugins')();

gulp.task('pegjs', function () {
  return gulp
    .src(paths.src + '/{app,components}/**/*.pegjs')
    .pipe($.peg({
      angular: {
          module: "angularModuleName",
          factory: "factoryName"
        }
      }).on('error', function handleError(err) {
      console.error(err.toString());
      this.emit('end');
    }))
    .pipe(gulp.dest(paths.src))
});

Finish

Options

Plugin redirects passed options directly to PEG, so read its documentation for details.

Wrappers

The generated source can be wrapped in different ways:

exportVar option

This option is inspired by grunt-peg plugin, and defines variable to which the generated parser will be assigned in the output file. Default value is module.exports.

angular option

This option is inspired by grunt-peg plugin. It creates an Angular module with a factory containing the generated source.

gulp-peg's People

Contributors

hab avatar leosprikryl avatar namuol avatar

Watchers

James Cloos avatar  avatar

Forkers

commity-cz

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.