Reference server implementation in Go of tus: the open protocol for resumable file uploads
Go to file
Marius 84faa14987 core: Allow non-tus HEAD requests, Add Length to HEAD responses
See https://github.com/tus/tusd/pull/480

Squashed commit of the following:

commit 7439fd84a6103afdedaf94701a65ce4376789380
Author: Marius <marius@transloadit.com>
Date:   Mon Oct 18 00:27:12 2021 +0200

    Docs and test

commit 16d9dc67e8c8eefc328b1ce12d7e7ca01a49f9f6
Merge: bae0ffb bea5183
Author: Marius <marius@transloadit.com>
Date:   Mon Oct 18 00:23:13 2021 +0200

    Merge branch 'head_header_check' of https://github.com/s3rius/tusd into s3rius-head_header_check

commit bea5183ec3
Author: Pavel Kirilin <win10@list.ru>
Date:   Thu May 20 19:53:36 2021 +0400

    Fixed "Tus-Resumable" header check for HEAD request.

    Signed-off-by: Pavel Kirilin <win10@list.ru>
2021-10-18 00:29:13 +02:00
.github ci: Upgrade Go version for tests and releases 2021-10-13 22:05:19 +02:00
cmd/tusd gcsstore: Allow object prefix to contain underscores (#495) 2021-10-17 23:48:53 +02:00
docs docs: Mention the helm chart in the installation instructions (#475) 2021-05-05 10:35:02 +02:00
examples Use new URL for public tus demo server 2020-10-02 12:44:12 +02:00
internal/uid core: Move packages into pkg/ and internal/ folders 2019-06-11 18:23:20 +02:00
pkg core: Allow non-tus HEAD requests, Add Length to HEAD responses 2021-10-18 00:29:13 +02:00
scripts azurestore: Add implementation 2021-07-29 01:14:50 +02:00
.gitignore misc: Ignore tusd binary (#505) 2021-10-13 21:33:49 +02:00
Dockerfile azurestore: Add implementation 2021-07-29 01:14:50 +02:00
LICENSE.txt Update year 2017-01-19 21:20:12 +01:00
Procfile Heroku deployment (#425) 2020-09-11 15:20:18 +02:00
README.md docs: Add CI badge for GitHub Actions 2019-10-16 14:22:31 +02:00
go.mod misc: Specify Go version for Heroku 2021-10-13 21:52:30 +02:00
go.sum azurestore: Add implementation 2021-07-29 01:14:50 +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

License

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