Works with any backend npm install Zero dependencies

Custom Chunk Endpoints

Point chunk upload and assembly at custom URLs that differ from the main upload endpoint.

(function() {
 new MultipleUpload('#demo', {
 uploadUrl: '/api/upload',
 multiple: true,
 chunked: true,
 chunkSize: '2MB',
 chunkUrl: '/api/files/chunk',
 chunkCompleteUrl: '/api/files/chunk/assemble'
 });
})();