Reference server implementation in Go of tus: the open protocol for resumable file uploads
Go to file
Marius 6f24143015 docs: Move documentation into own files 2019-09-29 21:15:31 +02:00
.github/ISSUE_TEMPLATE misc: Add templates for GitHub issues 2019-03-24 19:28:09 +01:00
cmd/tusd cli: Tune default timeout to decrease lock times 2019-09-29 20:04:26 +02:00
docs docs: Move documentation into own files 2019-09-29 21:15:31 +02:00
examples misc: Remove dots from folders 2019-09-12 13:10:51 +02:00
infra infra: Allow access without HTTPS 2019-09-29 20:03:52 +02:00
internal/uid core: Move packages into pkg/ and internal/ folders 2019-06-11 18:23:20 +02:00
pkg fixup! core: Allow writing data to storage after request is cancelled 2019-09-29 20:12:50 +02:00
scripts ci: Remove leading 'v' from version for Debian packages 2019-09-20 11:06:25 +02:00
.gitignore Remove frey references 2018-03-14 12:27:48 +01:00
.travis.yml ci: Only run deployments on Linux 2019-09-20 17:46:45 +02:00
Dockerfile misc: Change cloud provider for master.tus.io (#300) 2019-08-13 09:50:18 +01:00
LICENSE.txt Update year 2017-01-19 21:20:12 +01:00
README.md docs: Move documentation into own files 2019-09-29 21:15:31 +02:00
appveyor.yml misc: Update instructions for AppVeyor 2019-06-16 17:50:07 +02:00
go.mod etcd3locker: Move to separate repository 2019-09-12 21:42:54 +02:00
go.sum etcd3locker: Move to separate repository 2019-09-12 21:42:54 +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

Build Status Build status

License

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