Giter VIP home page Giter VIP logo

gulp-ect's Introduction

gulp-ect

Gulp plugin to compile ect.js template engine

Install

Install with npm

npm install --save-dev gulp-ect

Example

js

var ect = require('ect');

gulp.task('ect', function(){
  gulp.src('./src/*.ect')
      .pipe(ect())
      .pipe(gulp.dest('./out'));
});

gulp.task('default', function(){
  gulp.run('ect');
});

coffee

ect = require('ect')
gulp.task 'ect', ->
  gulp
    .src('./src/*.ect')
    .pipe(ect())
    .pipe gulp.dest('./out')

gulp.task 'default', ->
  gulp.run "ect"

API

ect(options)

options.ext

Type: String
Default: .ect

The extensions input files.

options.outExt

Type: String
Default: .html

The extensions output files.

options.data

Type: Function or Object
Default: {}

The template context data.

If a function is passed, use the format function(fileName,callback) and fire callback as callback(data):

gulp.src(['./src/*.ect','./src/inner/*.ect'])
  .pipe(ect({data:function(filename,cb){
  	cb({foo:"bar"});
  }}))
  .pipe(gulp.dest('./out'));

License

MIT © Vladislav Derjavin [email protected]

gulp-ect's People

Contributors

avevlad avatar

Watchers

 avatar  avatar

Forkers

pan64501 eedamame

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.