File/Video upload wrapper to ease bucket/storage/space/cdn integration 😛👊
npm install @austinfelipe/easy-upload!Publish package



File/Video upload wrapper to ease bucket/storage/space/cdn integration 😛👊
EasyUpload provides an easy way to send files/videos to a server. It provides abstraction to uploaders given one way to communicate to mutiple providers.
You can install it using either Github or Npmjs.
``javascript
npm install @austinfelipe/easy-upload
`
The easiest way to use it is installing one of [available provides]() and get an _EasyUpload_ instance.
Example:
`javascript
const uploaderImpl = new SomeUploaderImplementation();
const newFile = new FileInfoImplementation();
const uploader = new EasyUpload(uploaderImpl);
await uploader.sendFile(newFile);
`
- Amazon S3
- Azure Storage
- Digital Ocean Spaces
`javascript
yarn
yarn run build
``