upyun-hopper
v0.2.0
Published
grab a bunch of images into upyun bucket
Downloads
5
Readme
upyun-hopper
grab a bunch of images into upyun bucket
Installation
$ npm install upyun-hopper
Usage
hopper(imgs, config, callback)
Arguments
imgs
: image urls list to fetchconfig
: config of upyunbucket
: upyun bucket nameoperator
: upyun bucket's operator namepassword
: password for operatorpath
: where the files should be upload to
callback
: it will comes with two arguments- first:
err
: for catch the error - second:
result
: an array contains the urls of the image which has been uploaded to upyun bucket
- first:
Example
var hopper = require('upyun-hopper');
var config = {
bucket: 'lisposter',
operator: 'lisposter',
password: 'test2014',
path: 'hopper'
};
var imgs = [
'https://www.google.com/images/srpr/logo11w.png',
'http://img.hb.aicdn.com/105e70e100ada370b94c066683996d262d649aac6ec31-rkKO0b_fw658',
'http://img.hb.aicdn.com/0cb2f6a5401e75769f63653c28c49897c2397d2c1fe5f-1uSaMq_fw658'
];
hopper(imgs, config, function(err, result) {
console.log(result);
});
License
MIT © Leigh Zhu