dropbox / dropbox/dropbox-sdk-js
Streams
Open
enhancement
- Dominant language
- JavaScript
- Stars
- 970
- Forks
- 353
- Avg merge
- 9h 3m
- Merged PRs (30d)
- 2
Description
Is there a way to upload files via stream?
I am using Express with Multer middleware.
```
/* Upload file */
dropbox.filesUpload({path, contents: file}) // <- I would like to stream the file instead loading it in memory
.then((response) => {
return next(response);
})
.catch((error) => {
debug(error);
return next(err);
});
```
Contributor guide
Assessment
This issue has not been assessed yet.