tus-js-client icon indicating copy to clipboard operation
tus-js-client copied to clipboard

A pure JavaScript client for the tus resumable upload protocol

Results 67 tus-js-client issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Our website uses uppy with the tus plugin (which wraps tus-js-client) to give users the possibility to upload files. We experience now an error when a user...

bug

- Create a state machine model for tus uploads - Use https://github.com/pfusik/cito to build core logic for tus client - Add JS implementations around core logic to complete tus client

- [ ] Update all dependencies (figure out a solution for packages that do not support CommonJS anymore, e.g. is-stream, into-stream) - [ ] Use async/await inside of many Promises...

Test tus-js-client with large files (multiple GBs), varying browsers, and different options.

enhancement

Consider following code: ```js input.addEventListener("change", function(e) { // Get the selected file from the input element var file = e.target.files[0] // Create a new tus upload var upload = new...

enhancement

**Describe the bug** I'm attempting to leverage tus for large file uploads using Cloudflare Workers. Simply running `const tus = require("tus-js-client")` yields `window is not defined`. I've tried various hacks...

bug

Adds Checksum Extension support. This is work in progress. Uses SubtleCrypto on browser and crypto library on nodejs

Info: I want to upload multiple file using [tus-js-client](https://github.com/tus/tus-js-client). I am facing some issue when i try to upload multiple files. **Issues**: - If i try to upload multiple files...

question

tus-js-client might benefit from using TypeScript. In particular, the type safety could be helpful if we want to switch to a state-machine. https://transloadit.slack.com/archives/C02J6C6GQKE/p1656938073529209 provides helpful insights for a tool-assisted switch.

enhancement

Im trying to upload a large file around 3GB with TUS client. It seems to me that TUS client doesnt use readablestream as intended because the memory usage is huge....

question