• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H29-Oct-2021-239198

cmd/tusd/H29-Oct-2021-1,3181,028

docs/H29-Oct-2021-648511

examples/H29-Oct-2021-201103

internal/uid/H29-Oct-2021-2414

pkg/H29-Oct-2021-12,0478,955

scripts/H29-Oct-2021-158111

vendor/H03-May-2022-16,870,62411,452,722

.gitignoreH A D29-Oct-202166 87

DockerfileH A D29-Oct-20211.3 KiB4433

ProcfileH A D29-Oct-2021111 11

README.mdH A D29-Oct-20212.1 KiB4431

go.modH A D29-Oct-2021818 2522

go.sumH A D29-Oct-202171.6 KiB736735

README.md

1# tusd
2
3<img alt="Tus logo" src="https://github.com/tus/tus.io/blob/master/assets/img/tus1.png?raw=true" width="30%" align="right" />
4
5> **tus** is a protocol based on HTTP for *resumable file uploads*. Resumable
6> means that an upload can be interrupted at any moment and can be resumed without
7> re-uploading the previous data again. An interruption may happen willingly, if
8> the user wants to pause, or by accident in case of an network issue or server
9> outage.
10
11tusd is the official reference implementation of the [tus resumable upload
12protocol](http://www.tus.io/protocols/resumable-upload.html). The protocol
13specifies a flexible method to upload files to remote servers using HTTP.
14The special feature is the ability to pause and resume uploads at any
15moment allowing to continue seamlessly after e.g. network interruptions.
16
17It is capable of accepting uploads with arbitrary sizes and storing them locally
18on disk, on Google Cloud Storage or on AWS S3 (or any other S3-compatible
19storage system). Due to its modularization and extensibility, support for
20nearly any other cloud provider could easily be added to tusd.
21
22**Protocol version:** 1.0.0
23
24This branch contains tusd v1. If you are looking for the previous major release, after which
25breaking changes have been introduced, please look at the [0.14.0 tag](https://github.com/tus/tusd/tree/0.14.0).
26
27## Documentation
28
29* [Installation](/docs/installation.md)
30* [Using the `tusd` binary](/docs/usage-binary.md)
31  * [Monitoring the server](/docs/monitoring.md)
32  * [Receiving events with hooks](/docs/hooks.md)
33* [Using the tusd package programmatically](/docs/usage-package.md)
34* [FAQ & Common issues](/docs/faq.md)
35
36## Build status
37
38[![release](https://github.com/tus/tusd/actions/workflows/release.yaml/badge.svg)](https://github.com/tus/tusd/actions/workflows/release.yaml)
39[![continuous-integration](https://github.com/tus/tusd/actions/workflows/continuous-integration.yaml/badge.svg)](https://github.com/tus/tusd/actions/workflows/continuous-integration.yaml)
40
41## License
42
43This project is licensed under the MIT license, see `LICENSE.txt`.
44