tus-node-server icon indicating copy to clipboard operation
tus-node-server copied to clipboard

Node.js tus server, standalone or integrable in any framework, with disk, S3, and GGC stores.

Results 74 tus-node-server issues
Sort by recently updated
recently updated
newest added

Datastores's responsibility should not be handling of http requests but working with readable streams and File class. This PR is just a first step towards this goal, it is probably...

When upload-length-deferred is used in the case of streams, currently the FileStore does not emit EVENT_UPLOAD_COMPLETE event because it does not check the upload-length field of the request header. That's...

We are planning to use and run this library using AWS Fargate. In AWS there are multiple ways to pass a credentials to `aws-sdk` https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/setting-credentials-node.html Here is what we want...

I am following along with the docs for setting up a standalone express server and ran into an issue. When I try to upload files from localhost using [uppy](https://uppy.io/docs/uppy/#uppy-use-plugin-opts) alongside...

A user of tus-node-server contacted me and described an issue they are having with tus-node-server in production: Some tus uploads randomly fail with a NoSuchUpload error when being resumed. Some...

The current behaviour is creating a bad file url when the `path` is set to the root: ```js server.datastore = new tus.FileStore({ path: '/' }) ``` results in a URL...

I made a pr (#206) to make it possible to just pass in your own implementation of configstore, but I was promised a different solution by @Murderlon instead, so I'm...

Is it possible to add Hapi integration similar to [this](https://github.com/outmoded/discuss/issues/416)? The Code doesn't seem to work anymore. any ideas how to fix?

help wanted

这是我的代码,有时候断点续传走到 this.client.uploadPart 就卡住了,有时候正常,错误为就解析错误。我是在koa里使用的,我的版本"aws-sdk": "^2.4.1", ``` const PATH = '.files' const tusServer = new tus.Server(); tusServer.datastore = new tus.S3Store({ path: `/${PATH}`, endpoint: 'http://192.168.10.23:9000', accessKeyId: 'minio', secretAccessKey: 'minio123', s3ForcePathStyle: true, bucket: 'shangdeng',...