A jQuery client implementing the tus resumable upload protocol. If you looking for a browser client without the need of jQuery, you may enjoy tus-js-client.
This first version will provide a low level API without a GUI. More advanced features will follow.
The code below outlines how the API could work.
$('input[type=file]').change(function() {
var options = { endpoint: 'http://localhost:1080/files' };
var input = $(this);
tus
.upload(this.files[0], options)
.fail(function(error) {
console.log('upload failed', error);
})
.always(function() {
input.val('');
})
.progress(function(e, bytesUploaded, bytesTotal) {
console.log(bytesUploaded, bytesTotal);
})
.done(function(url, file) {
console.log(url);
console.log(file.name);
});
});
Without installing anything, you can testdrive over at the tus.io website.
But for local development, here's how to run the repo-included demo:
- Install a tusd server to accept the upload on http://127.0.0.1:1080 as instructed here.
- Install node.js to serve the demo from http://127.0.0.1:8080
(osx:
brew install nodejs
) - Install & run the demo
cd demo
npm install
node server.js
- Point your browser to http://localhost:8080
This project is licensed under the MIT license, see LICENSE.txt
.