Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jonathandion/kraken
- Owner: jonathandion
- License: mit
- Created: 2016-04-28T16:07:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-04-30T14:22:59.000Z (over 8 years ago)
- Last Synced: 2024-10-12T03:19:09.470Z (about 1 month ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
}
})```