-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimplementations.html
197 lines (144 loc) · 8.82 KB
/
implementations.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Implementations</title>
<link rel="shortcut icon" href="/assets/img/favicon.ico">
<link href="/assets/bootstrap/css/bootstrap.css" rel="stylesheet" media="screen">
<link href="/assets/css/main.css" rel="stylesheet" type="text/css" />
<link href="//kvz.github.io/on-the-githubs/css/on-the-githubs.min.css" rel="stylesheet" />
<link href="http://feeds.feedburner.com/tusio" type="application/rss+xml" rel="alternate" title="Posts">
</head>
<body>
<a target="_blank" href="https://github.com/tus/tus.io"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<div class="container-narrow">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li class=""><a href="/index.html">Home</a></li>
<li class=""><a href="/about.html">About</a></li>
<li class=""><a href="/blog.html">Blog</a></li>
<li class=""><a href="/demo.html">Demo</a></li>
<li class=""><a href="/protocols/resumable-upload.html">Protocol</a></li>
<li class="active"><a href="/implementations.html">Implementations</a></li>
</ul>
<h3 class="muted logo"><a href="/">tus</a></h3>
</div>
<hr>
<h2>Implementations</h2>
<p>Here are some real-life implementations of the tus resumable upload <a href="/protocols/resumable-upload.html">protocol</a> in different languages
and platforms.</p>
<h3>Official</h3>
<p>These projects are reference implementations maintained by the protocol developers.</p>
<ul>
<li><p><a href="https://github.com/tus/tus-jquery-client">tus-jquery-client</a>
<span class="muted">— by <a href="/about.html">tus</a><br /></span>
Add tus <code>v0.2.1</code> resumable file uploads to <strong>client</strong> web apps that are built with <strong>jQuery</strong><br />
Licensed under MIT<br /></p></li>
<li><p><a href="https://github.com/tus/tusd">tusd</a>
<span class="muted">— by <a href="/about.html">tus</a><br /></span>
A stand-alone <strong>server</strong> written in <strong>Go</strong> to handle resumable file uploads using the tus <code>v0.2.1</code> protocol.
You can run this to test client implementations with.<br />
Licensed under MIT<br /></p></li>
</ul>
<p>As we go we'll adopt high-quality MIT licensed implementations for all languages and platforms
under the GitHub <a href="https://github.com/tus">tus organisation</a>. We'll be looking to fork gems inside the Community section below.</p>
<hr class="big">
<h3>Community</h3>
<p>The <a href="/protocols/resumable-upload.html">protocol</a> is very simple and because
it builds on standard HTTP calls it
could be implemented as Ruby libraries, Wordpress plugins, Bash/cURL, etc.</p>
<p>For new implementations we recommend using the MIT license and making clear
what protocol version you're targetting.</p>
<h4>Client</h4>
<ul>
<li><p><a href="https://github.com/arifsetiawan/qt-upload-plugin">arifsetiawan/qt-upload-plugin</a>
<span class="muted">— by <a href="https://github.com/arifsetiawan">Nurul Arif Setiawan</a><br /></span>
Add tus <code>v0.2.1</code> resumable file uploads to <strong>Qt C++ (Qt plugin)</strong> clients<br />
Licensed under MIT<br /></p></li>
<li><p><a href="https://github.com/leblanc-simon/php-tus">leblanc-simon/php-tus</a>
<span class="muted">— by <a href="https://github.com/leblanc-simon">Simon Leblanc</a><br /></span>
Add tus <code>v0.2.1</code> resumable file uploads to <strong>PHP</strong> clients<br />
Licensed under MIT<br /></p></li>
<li><p><a href="https://github.com/eahydra/tusclient">eahydra/tusclient</a>
<span class="muted">— by <a href="https://github.com/eahydra">Hydra Ea</a><br /></span>
Add tus <code>v0.2.1</code> resumable file uploads to <strong>Go</strong> clients<br />
Licensed under MIT<br /></p></li>
<li><p><a href="https://github.com/vayam/tuspy">vayam/tuspy</a>
<span class="muted">— by <a href="https://github.com/vayam">Naren Venkataraman</a><br /></span>
Add tus <code>v0.2.0</code> resumable file uploads to <strong>Python</strong> clients<br />
Licensed under Apache License, Version 2.0<br /></p></li>
<li><p><a href="https://github.com/vangheem/tus">vangheem/tus</a>
<span class="muted">— by <a href="https://github.com/vangheem">Nathan Van Gheem</a><br /></span>
Integrate tus <code>v0.2.1</code> with existing <strong>Python</strong> web technologies(WSGI, WebOb, Plone, Zope2)<br />
Licensed under MIT<br /></p></li>
<li><p><a href="https://github.com/tus/tus-ios-client">tus/tus-ios-client</a>
<span class="muted">— by <a href="https://github.com/afh">Alexis Hildebrandt</a><br /></span>
Add tus resumable file uploads to <strong>iOS</strong> clients <span class="muted">— In the works</span><br />
Licensed under MIT<br /></p></li>
</ul>
<!--
- [tus/tus-android-client](https://github.com/tus/tus-android-client)
<span class="muted">— by [tus](/about.html)<br /></span>
Add tus resumable file uploads to <strong>Android</strong> clients <span class="muted">— Planned</span><br />
Licensed under MIT<br />
-->
<h4>Server</h4>
<ul>
<li><p><a href="https://github.com/codeeply/tusdpy">codeeply/tusdpy</a>
<span class="muted">— by <a href="https://github.com/codeeply">codeeply</a><br /></span>
Add tus <code>v0.2.1</code> resumable file uploads to <strong>Python</strong> servers<br />
Currently only the core protocol (no extensions) is supported.<br />
Licensed under MIT<br /></p></li>
<li><p><a href="https://github.com/picocandy/rubytus">picocandy/rubytus</a>
<span class="muted">— by <a href="https://github.com/picocandy">PicoCandy</a><br /></span>
Released as a ruby gem - tus <code>v0.2.1</code> powering resumable file uploads for <strong>ruby</strong> servers and <strong>rails</strong> apps<br />
Licensed under MIT<br /></p></li>
<li><p><a href="https://github.com/vayam/brewtus">vayam/brewtus</a>
<span class="muted">— by <a href="https://github.com/vayam">Naren Venkataraman</a><br /></span>
Add tus <code>v0.2.1</code> resumable file uploads to <strong>node.js</strong> servers<br />
Licensed under Apache License, Version 2.0<br /></p></li>
</ul>
<p>Drop a line if you built an open source tus implementation, and you'll be
listed here.</p>
<hr>
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'tusio'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3306079-17']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="/assets/bootstrap/js/bootstrap.js"></script>
<script src="//kvz.github.io/on-the-githubs/js/jquery.on-the-githubs.min.js"></script>
<script src="/assets/js/jquery-file-upload/js/vendor/jquery.ui.widget.js"></script>
<script src="/assets/js/jquery-file-upload/js/jquery.fileupload.js"></script>
<script src="/assets/js/jquery.tus.js"></script>
<script type="text/javascript">
window.tusdEndpoint = '';
</script>
<script type="text/javascript">
$('.on-the-githubs').onthegithubs();
// If you use bootstrap and want to enable tooltips:
$('a[rel]').tooltip();
</script>
<script src="/assets/js/upload-demo.js"></script>
</body>
</html>