npm install mediacrush

MediaCrush API wrapper.
`` javascript
var mediacrush = require('mediacrush');
mediacrush.getInfo('kmopZLGFVRYs', function(error, data) {
if (error) {
throw error;
}
// => {
// => "blob_type": "image",
// => "compression": 1,
// => "extras": [],
// => "files": [
// => {
// => "file": "/kmopZLGFVRYs.png",
// => "type": "image/png",
// => "url": "https://cdn.mediacru.sh/kmopZLGFVRYs.png"
// => }
// => ],
// => "flags": {},
// => "hash": "kmopZLGFVRYs",
// => "metadata": {
// => "dimensions": {
// => "height": 2000,
// => "width": 2000
// => }
// => },
// => "original": "/kmopZLGFVRYs.png",
// => "type": "image/png"
// => }
});
`
` bash`
$ npm install mediacrush
` javascript`
var mediacrush = require('mediacrush');
Takes an _Array_ of MediaCrush hashes and groups them into an album oncallback(error, response)
MediaCrush. Calls when response returns.
Gets information on _String_ or _Array_ hash from MediaCrush and callscallback(error, response).
Uploads the image found at _String_ url to MediaCrush and callscallback(error, response)`.