0c04ba220f | ||
---|---|---|
filestore | ||
limitedstore | ||
tusd | ||
uid | ||
.gitignore | ||
.travis.yml | ||
LICENSE.txt | ||
README.md | ||
appveyor.yml | ||
concat_test.go | ||
cors_test.go | ||
datastore.go | ||
get_test.go | ||
handler.go | ||
handler_test.go | ||
head_test.go | ||
options_test.go | ||
patch_test.go | ||
post_test.go | ||
terminate_test.go |
README.md
tusd
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
.