Easy File Uploader for your Websites and Projects. Supports direct uploading from Facebook, Dropbox, GDrive, via Link, via Image Search, Mic, Camera, Youtube, etc. You can save files directly to your S3 bucket or your Dropbox spaces account. In built imag
npm install uploader-windowEasy File Uploader for your Websites and Projects. Supports direct uploading from Facebook, Dropbox, GDrive, via Link, via Image Search, Mic, Camera, Youtube, etc. You can save files directly to your S3 bucket or your Dropbox spaces account. In built image editor so users can edit, resize, apply filters to images.
Helper package to integrate uploader window into your apps and projects.
`` `
npm install uploader-window --save
`
import Uploader from 'uploader-window';
// let Uploader = require('uploader-window');
console.log(Uploader);
const uploader = Uploader({
apiKey: 'api-key-here'
});
uploader({
sources: [ 'upload', 'paste', 'facebook', 'dropbox' ],
minFiles: '2'
})
.then(function (urls) {
console.log("urls: ", urls);
});
``
Please visit https://live.uploader.win/home#/api to
get your API key, customize file upload settings, add/remove sources, set upload options, etc.
MIT