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: about 9 hours 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-30T14:22:59.000Z (almost 9 years ago)
- Last Synced: 2025-02-14T01:48:17.759Z (8 days 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'
}
})```