gulp-jsonp
1.0.3 • Public • Published Gulp JSONP plugin
Simple JSONP wrapper Gulp Plugin.
Installation
Simple Usage
var gjsonp = require("gulp-jsonp");
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]"});
Package Sidebar
Install
Weekly Downloads