Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
.github/ | H | 29-Oct-2021 | - | 239 | 198 | |
cmd/tusd/ | H | 29-Oct-2021 | - | 1,318 | 1,028 | |
docs/ | H | 29-Oct-2021 | - | 648 | 511 | |
examples/ | H | 29-Oct-2021 | - | 201 | 103 | |
internal/uid/ | H | 29-Oct-2021 | - | 24 | 14 | |
pkg/ | H | 29-Oct-2021 | - | 12,047 | 8,955 | |
scripts/ | H | 29-Oct-2021 | - | 158 | 111 | |
vendor/ | H | 03-May-2022 | - | 16,870,624 | 11,452,722 | |
.gitignore | H A D | 29-Oct-2021 | 66 | 8 | 7 | |
Dockerfile | H A D | 29-Oct-2021 | 1.3 KiB | 44 | 33 | |
Procfile | H A D | 29-Oct-2021 | 111 | 1 | 1 | |
README.md | H A D | 29-Oct-2021 | 2.1 KiB | 44 | 31 | |
go.mod | H A D | 29-Oct-2021 | 818 | 25 | 22 | |
go.sum | H A D | 29-Oct-2021 | 71.6 KiB | 736 | 735 |
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