4

Can uploadcare-widget be used without using the upload care service?

The goal:

  • Use the widget (specifically to allow users to upload files from their google drive/dropbox accounts).
  • Instead of using upload care's backend, use your own backend, i.e. node.js/aws s3.
Learner
  • 2,459
  • 4
  • 23
  • 39

1 Answers1

2

Yes, it can. It's open source!

Although you will have to either replicate or get rid of functionality that relies on Uploadcare infrastructure:

  • uploads (this is the easiest part)
  • fetching files from social networks and cloud storage services
  • image preview and cropping that relies on Uploadcare CDN

So unless you're moving enormous amounts of files, most cost efficient way is to use Uploadcare as it is. BTW, you can use your own S3 storage and even upload directly to your S3 buckets.

Dmitry Mukhin
  • 6,649
  • 3
  • 29
  • 31
  • Thanks @mojo. Point 2 "fetching files from social networks and cloud storage services" is what most interests me. Is this capability handled by the uploadcare backend? I assumed there was no server involved and it was limited to communication between the user's browser and the cloud service (i.e. dropbox). – Learner Jun 10 '15 at 23:36
  • that part is serverside. – Dmitry Mukhin Jun 11 '15 at 09:45