npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

gulp-js2coffee

1.0.0

@hemanth

npmHomeRepoSnykSocket
Downloads:0
$ npm install gulp-js2coffee
DailyWeeklyMonthlyYearly

Convert JS to coffee.

Usage

var coffee = require('gulp-js2coffee');

gulp.task('js2coffee', function() {
  gulp.src('./src/*.js')
    .pipe(js2coffee().on('error', gutil.log))
    .pipe(gulp.dest('./public/'))
});