dropbox / dropbox/dropbox-sdk-js
add api to allow upload progress monitoring
Open
enhancement
- Dominant language
- JavaScript
- Stars
- 970
- Forks
- 353
- Avg merge
- 9h 3m
- Merged PRs (30d)
- 2
Description
This is fairly straightforward to do with superagent (which is used by this sdk).
```
request
.post('/files/upload')
.send(file)
.on('progress', function(e) {
console.log(e.percent);
}
```
Thus just need to change the API to allow the user to specify a progress callback.
Contributor guide
Assessment
This issue has not been assessed yet.