feathersjs-ecosystem / feathers-blob

Feathers service for blob storage, like S3.
http://feathersjs.com
MIT License
92 stars 32 forks source link

Make data uri encoding optional #69

Closed claustres closed 4 years ago

claustres commented 4 years ago

Data uri is great to typically upload/download images, however for others types of data like raw binary data, etc. it adds a layer of complexity that is not really useful.

The usage of data uri could remains default (backward compatibility) but the usage of raw data buffer could be enforced by either a service constructor option or a query parameter.

claustres commented 4 years ago

PR https://github.com/feathersjs-ecosystem/feathers-blob/pull/72 already introduced a new option at service level.