All Projects → kraken-io → gulp-kraken

kraken-io / gulp-kraken

Licence: MIT license
Gulp plugin to optimize all your images with the powerful Kraken.io API

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to gulp-kraken

gulp-webdriver
gulp-webdriver is a gulp plugin to run selenium tests with the WebdriverIO testrunner
Stars: ✭ 77 (+305.26%)
Mutual labels:  gulp-plugins
imagekit-php
PHP SDK for ImageKit.io API.
Stars: ✭ 34 (+78.95%)
Mutual labels:  image-optimization
uploadcare-ios
UploadcareKit: iOS SDK for Uploadcare API
Stars: ✭ 24 (+26.32%)
Mutual labels:  image-optimization
gulp-spsync
Gulp plugin for synchronizing local files with a SharePoint library
Stars: ✭ 57 (+200%)
Mutual labels:  gulp-plugins
image-minimizer-webpack-plugin
Webpack loader and plugin to compress images using imagemin
Stars: ✭ 180 (+847.37%)
Mutual labels:  image-optimization
Imgbot
An Azure Function solution to crawl through all of your image files in GitHub and losslessly compress them. This will make the file size go down, but leave the dimensions and quality untouched. Once it's done, ImgBot will open a pull request for you to review and merge. [email protected]
Stars: ✭ 1,017 (+5252.63%)
Mutual labels:  image-optimization
gulp-iife
A Gulp plugin for wrapping JavaScript code in IIFEs.
Stars: ✭ 39 (+105.26%)
Mutual labels:  gulp-plugins
gulp-version-append
Gulp plugin to append version from package.json to static file url to avoid caching
Stars: ✭ 18 (-5.26%)
Mutual labels:  gulp-plugins
gulp-html
Gulp plugin for HTML validation, using the official Nu Html Checker (v.Nu)
Stars: ✭ 70 (+268.42%)
Mutual labels:  gulp-plugins
netlify-plugin-image-optim
Optimize images as part of your Netlify build process. Optimizes PNG, JPEG, GIF and SVG file formats.
Stars: ✭ 63 (+231.58%)
Mutual labels:  image-optimization
gulp-penthouse
Gulp plugin for extracting critical path css
Stars: ✭ 14 (-26.32%)
Mutual labels:  gulp-plugins
pngloss
Lossy compression of PNG images
Stars: ✭ 73 (+284.21%)
Mutual labels:  image-optimization
tinify-ruby
Ruby client for the Tinify API.
Stars: ✭ 41 (+115.79%)
Mutual labels:  image-optimization
beginner-windows-npm-gulp-webdev-tutorial
Beginner guide for users on web development with node.js/npm + gulp terminal commands. You'll learn how to use other terminal commands like git, gulp, bower, yarn, and more!
Stars: ✭ 40 (+110.53%)
Mutual labels:  gulp-plugins
gulp-append-prepend
➕ Simple Gulp plugin to append/prepend.
Stars: ✭ 15 (-21.05%)
Mutual labels:  gulp-plugins
gulp-texturepacker
Gulp plugin for TexturePacker
Stars: ✭ 12 (-36.84%)
Mutual labels:  gulp-plugins
tinify-net
.NET client for the Tinify API.
Stars: ✭ 45 (+136.84%)
Mutual labels:  image-optimization
zImageOptimizer
Simple image optimizer for JPEG, PNG and GIF images on Linux, MacOS and FreeBSD.
Stars: ✭ 108 (+468.42%)
Mutual labels:  image-optimization
pngquant
A Python Wrapper of Pngquant
Stars: ✭ 27 (+42.11%)
Mutual labels:  image-optimization
performance-checklist
📈 A comprehensive list of performance optimization techniques to improve your site's performance
Stars: ✭ 26 (+36.84%)
Mutual labels:  image-optimization

gulp-kraken

Gulp plugin to optimize all your images with the powerful Kraken.io API

Installation

$ npm install gulp-kraken --save-dev

Options

  • key - your Kraken API Key
  • secret - your Kraken API Secret
  • lossy - enable/disable intelligent lossy optimization. Defaults to true
  • concurrency - image processing concurrency (1 - 16). Defaults to 4

Example

var gulp = require('gulp'),
    kraken = require('gulp-kraken');

gulp.task('kraken', function () {
    gulp.src('images/**/*.*')
        .pipe(kraken({
            key: 'kraken-api-key-here',
            secret: 'kraken-api-secret-here',
            lossy: true,
            concurrency: 6
        }));
});

gulp.task('default', function() {
    gulp.start('kraken');
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].