Reference server implementation in Go of tus: the open protocol for resumable file uploads
Go to file
Derrick Hammer 7b20ce6a9a
refactor: change api routes to use a wrapped version of the request context
2023-06-29 04:55:30 -04:00
.github deps: Upgrade dependencies (#957) 2023-06-05 11:05:37 +02:00
cmd/tusd cli: Add flag for disabling CORS headers (#899) 2023-03-27 00:11:41 +02:00
docker docker: Allow passing secrects using files (#810) 2022-09-19 09:34:37 +02:00
docs cli: Add flag for disabling CORS headers (#899) 2023-03-27 00:11:41 +02:00
examples docker: Allow passing secrects using files (#810) 2022-09-19 09:34:37 +02:00
internal/uid core: Move packages into pkg/ and internal/ folders 2019-06-11 18:23:20 +02:00
pkg refactor: change api routes to use a wrapped version of the request context 2023-06-29 04:55:30 -04:00
scripts chore: Rename master to main 2023-01-18 13:04:11 +01:00
.gitignore docker: Allow passing secrects using files (#810) 2022-09-19 09:34:37 +02:00
Dockerfile deps: Upgrade dependencies (#957) 2023-06-05 11:05:37 +02:00
LICENSE.txt Update year 2017-01-19 21:20:12 +01:00
Procfile Increase max size to 100GB (#551) 2021-11-03 11:13:26 +01:00
README.md chore: Rename master to main 2023-01-18 13:04:11 +01:00
go.mod build(deps): bump github.com/aws/aws-sdk-go from 1.44.273 to 1.44.275 (#958) 2023-06-20 15:28:18 +02:00
go.sum build(deps): bump github.com/aws/aws-sdk-go from 1.44.273 to 1.44.275 (#958) 2023-06-20 15:28:18 +02:00

README.md

tusd

Tus logo

tus is a protocol based on HTTP for resumable file uploads. Resumable means that an upload can be interrupted at any moment and can be resumed without re-uploading the previous data again. An interruption may happen willingly, if the user wants to pause, or by accident in case of an network issue or server outage.

tusd is the official reference implementation of the tus resumable upload protocol. The protocol specifies a flexible method to upload files to remote servers using HTTP. The special feature is the ability to pause and resume uploads at any moment allowing to continue seamlessly after e.g. network interruptions.

It is capable of accepting uploads with arbitrary sizes and storing them locally on disk, on Google Cloud Storage or on AWS S3 (or any other S3-compatible storage system). Due to its modularization and extensibility, support for nearly any other cloud provider could easily be added to tusd.

Protocol version: 1.0.0

This branch contains tusd v1. If you are looking for the previous major release, after which breaking changes have been introduced, please look at the 0.14.0 tag.

Documentation

Build status

release continuous-integration

License

This project is licensed under the MIT license, see LICENSE.txt.