0.0.2 • Published 9 years ago

yamd5-worker v0.0.2

Weekly downloads
2
License
BSD-3-Clause
Repository
github
Last release
9 years ago

YaMD5 Worker

Base on YaMD5 by Raymond Hill.

Usage

var yamd5Worker = new Worker('path-to-yamd5-workers.min.js');
yamd5Worker.onmessage = function(e) {
  console.log(e.data.id);
  console.log(e.data.md5);
};
yamd5Worker.postMessage({id: 'whatever you want', file: file_form_input_or_drop});

! Notice: Currently, web worker do not support cross domain. So you have to put js file to the main domain.

Build

$ npm run build

If you want uncompressed version, just change webpack.js, and generate one.

BTW: I really really want to know, why S3 do not support sha1!!! Rusha is sooooo cool for frontend.