Reference server implementation in Go of tus: the open protocol for resumable file uploads
Go to file
Acconut 38794a4cf9 split handler test into multiple files 2015-02-09 19:37:06 +01:00
filestore change default file permission to 0775 2015-02-06 22:07:53 +01:00
tusd change default file permission to 0775 2015-02-06 22:07:53 +01:00
uid rewrite tusd 2015-02-01 14:57:57 +01:00
.gitignore rewrite tusd 2015-02-01 14:57:57 +01:00
.travis.yml exlude go 1.1 2015-02-01 15:30:20 +01:00
LICENSE.txt rewrite tusd 2015-02-01 14:57:57 +01:00
README.md update readme to include badge and new requirements 2015-02-01 15:45:27 +01:00
cors_test.go split handler test into multiple files 2015-02-09 19:37:06 +01:00
datastore.go add GET route for downloading uploads 2015-02-06 22:05:33 +01:00
get_test.go split handler test into multiple files 2015-02-09 19:37:06 +01:00
handler.go add GET route for downloading uploads 2015-02-06 22:05:33 +01:00
handler_test.go split handler test into multiple files 2015-02-09 19:37:06 +01:00
head_test.go split handler test into multiple files 2015-02-09 19:37:06 +01:00
options_test.go split handler test into multiple files 2015-02-09 19:37:06 +01:00
patch_test.go split handler test into multiple files 2015-02-09 19:37:06 +01:00
post_test.go split handler test into multiple files 2015-02-09 19:37:06 +01:00

README.md

tusd

Build Status

tusd is the official reference implementation of the tus resumable upload protocol.

This means it is meant for client authors to verify their implementations as well as server authors who may look at it for inspiration.

In the future tusd may be extended with additional functionality to make it suitable as a standalone production upload server, but for now this is not a priority.

Protocol version: 1.0.0

Getting started

Requirements:

  • Go (1.2 or newer)

Running tusd from source:

Clone the git repository and cd into it.

git clone git@github.com:tus/tusd.git
cd tusd

Now you can run tusd:

go run tusd/main.go

Running the testsuite

go test -v ./...

License

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