dejanstrbac / tus

An implementation of a TUS server (https://tus.io/) in Elixir

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Elixir tus

travis.ci build status

An implementation of a tus server in Elixir

Documentation: https://hexdocs.pm/tus/

Tus logo

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.

It's currently capable of accepting uploads with arbitrary sizes and storing them locally on disk; or in Amazon S3, by installing the tus_storage_s3 hex package. Due to its modularization and extensibility, support for any other cloud provider can be easily added.

Features

This library implements the core TUS API v1.0.0 protocol and the following extensions:

About

An implementation of a TUS server (https://tus.io/) in Elixir

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Elixir 100.0%