tusd

tus:可恢复文件上传的开放协议的 Go(语言)参考服务器实现。「Reference server implementation in Go of tus: the open protocol for resumable file uploads」

Github星跟踪图

tusd

tus 是基于 HTTP 的可恢复文件上传协议。恢复意味着上传可以在任何时候被中断,并且可以在不重新上传之前的数据的情况下恢复。中断可能是自愿发生的(如果用户想暂停),也可能是偶然发生的(如果网络问题或服务器中断)。

tusd 是 tus 可恢复上传协议 的官方参考实现。该协议指定了一种灵活的方法,可以使用 HTTP 将文件上传到远程服务器。特殊功能是可以随时暂停和恢复上传,例如允许在网络中断后无缝地继续。

它能够接受任意大小的上传并将其本地存储在磁盘、Google Cloud Storage 或 AWS S3(或任何其他 S3 兼容存储系统)上。由于它的模块化和可扩展性,tusd 可以很容易地添加对几乎任何其他云提供商的支持。

协议版本:1.0.0

该分支包含 tusd v1。如果您正在寻找以前的主要版本,之后又引入了重大更改,请查看 0.14.0 标记。

文档

许可

该项目已获得MIT许可,请参阅LICENSE.txt。


主要指标

概览
名称与所有者tus/tus-resumable-upload-protocol
主编程语言
编程语言Go (语言数: 0)
平台Linux, Mac, Windows
许可证MIT License
所有者活动
创建于2013-04-06 18:29:34
推送于2025-01-13 12:09:41
最后一次提交
发布数4
最新版本名称v0.2.2 (发布于 )
第一版名称v0.1 (发布于 )
用户参与
星数1.6k
关注者数54
派生数102
提交数287
已启用问题?
问题数130
打开的问题数19
拉请求数44
打开的拉请求数6
关闭的拉请求数15
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?

tusd

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.