Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jonathandion/kraken

Node module to optimize all your images with the powerful Kraken.io API
https://github.com/jonathandion/kraken

Last synced: 5 days ago
JSON representation

Node module to optimize all your images with the powerful Kraken.io API

Awesome Lists containing this project

README

        

# kraken
Node module to optimize all your images locally with the powerful Kraken.io API

## How to use

```javascript

var kraken = require('kraken-images');
var path = require('path');

kraken({
src: path.join(__dirname + '/src/'),
dest: path.join(__dirname + '/build/'),
kraken : {
api_key: 'your_api_key',
api_secret: 'your_api_secret'
}
})

```