transloadit / uppy-server

[DEPRECATED] 'Uppy Server' was renamed to 'Companion' and lives inside the Uppy repo no
https://github.com/transloadit/uppy/tree/master/packages/%40uppy/companion
MIT License
114 stars 27 forks source link

does uppy-server support multipart? #56

Closed musicformellons closed 6 years ago

musicformellons commented 6 years ago

Uppy-server has body-parser as a dependency. On their repo I find that it

does not handle multipart bodies

As a total nitwit in this area this kind of suprises me? Does uppy-server not require something like multer to facilitate multipart. This idea of mine stems from this article.

kvz commented 6 years ago

Hi there. Uppy server does not receive files. It’s a proxy for fetching from Eg dropbox. The receiver is your Eg Apache server or a tusd server

musicformellons commented 6 years ago

Ah! So to have 'a complete' file storage solution I need to install e.g. a tusd server next to uppy-server!?

kvz commented 6 years ago

Yeah sorry if it's a bit unclear! If you just need 'regular' uploads, your current webserver will be able to handle any upload from the XhrPlugin. If you addition you want:

Does that help?

musicformellons commented 6 years ago

It is clear now! Thanks!