hoster-js
v1.0.10
Published
class hoster js
Downloads
4
Readme
Hoster-Js
install
npm install hoster-js --save
usage
import { Uptobox } from 'hoster-js';
import fs = require('vinyl-fs');
let uptobox = new Uptobox('username', 'password');
uptobox.info('http://uptobox.com/your_link')
.then((data) => {
// data.filename;
// data.size;
// ...
});
uptobox.download('http://uptobox.com/your_link')
.pipe(fs.dest('downloads'));