Skip to content

alexsaves/gulp-jsonp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Gulp JSONP plugin

Simple JSONP wrapper Gulp Plugin.

Installation

npm version

npm install gulp-jsonp

Simple Usage

var gjsonp = require("gulp-jsonp");

/**
 * Build JS
 */
gulp.task('js', function () {
  gulp.src(['./src/**/*.html'])
    .pipe(gjsonp({
        callback: "__myJSONPCallbackFunction",
        key: "optionalFilePrefix_"
      }))
    .pipe(gulp.dest('./dist/'));
});

Output

The plugin will rename files to have a .js extension, and wrap the contents in an object like so:

__myJSONPCallbackFunction({"filename":"optionalFilePrefix_index.html","contents":"[BASE64 ENCODED CONTENTS]"});

About

JSONP Wrapper for Gulp

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages