dropbox / dropbox/dropbox-sdk-js

add api to allow upload progress monitoring

Open
#157 4 comments 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.