Package Exports
- fbr
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fbr) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
FileBufferReader.js: JavaScript Library

Demo: https://www.WebRTC-Experiment.com/FileBufferReader/
- Reads file, and returns chunkfied array-buffers
- Resulting chunks can be instantly shared using WebRTC data channels or can be reliably shared as Skype do!
- Supports retransmission of the lost chunks
A few points:
- FileBufferReader itself doesn't do anything except reading the file(s)
- You need to manually share chunks using your preferred medium or gateway
- FileBufferReader currently uses memory to store chunks; which has limit. So, you may not be able to use FileBufferReader to send 1GB file or more.
- FileBufferReader is added to support controlled-buffers transmissions whilst following Skype's file sharing style.
It is MIT Licenced, which means that you can use it in any commercial/non-commercial product, free of cost.
npm install fbrTo use it:
<script src="./node_modules/fbr/FileBufferReader.js"></script>1. Link The Library
https://cdn.webrtc-experiment.com/FileBufferReader.js2. Get File (optional step)
var fileSelector = new FileSelector();
var btnSelectFile = document.getElementById('select-file');
btnSelectFile.onclick = function() {
fileSelector.selectSingleFile(function(file) {
// file == input[type=file]
});
};You can select multiple files using selectMultipleFiles method.
3. Read Buffers
var fileBufferReader = new FileBufferReader();
fileBufferReader.readAsArrayBuffer(file, function(uuid) {
// var file = fileBufferReader.chunks[uuid];
// var listOfChunks = file.listOfChunks;
// get first chunk, and send using WebRTC data channels
// NEVER send chunks in loop; otherwise you'll face issues in slow networks
// remote peer should notify if it is ready for next chunk
fileBufferReader.getNextChunk(uuid, function(nextChunk, isLastChunk) {
if(isLastChunk) {
alert('File Successfully sent.');
}
// sending using WebRTC data channels
datachannel.send(nextChunk);
});
});4. When remote peer receives a chunk
datachannel.onmessage = function(event) {
var chunk = event.data;
if (chunk instanceof ArrayBuffer || chunk instanceof DataView) {
// array buffers are passed using WebRTC data channels
// need to convert data back into JavaScript objects
fileBufferReader.ConvertToObject(chunk, function(object) {
datachannel.onmessage({
data: object
});
});
return;
}
// if target peer requested next chunk
if(chunk.readyForNextChunk) {
fileBufferReader.getNextChunk(chunk.uuid, function(nextChunk, isLastChunk) {
if(isLastChunk) {
alert('File Successfully sent.');
}
// sending using WebRTC data channels
datachannel.send(nextChunk);
});
return;
}
// if chunk is received
fileBufferReader.addChunk(chunk, function(promptNextChunk) {
// request next chunk
datachannel.send(promptNextChunk);
});
};5. File progress helpers
var progressHelper = {};
var outputPanel = document.body;
var FileHelper = {
onBegin: function(file) {
var li = document.createElement('li');
li.title = file.name;
li.innerHTML = '<label>0%</label> <progress></progress>';
outputPanel.insertBefore(li, outputPanel.firstChild);
progressHelper[file.uuid] = {
li: li,
progress: li.querySelector('progress'),
label: li.querySelector('label')
};
progressHelper[file.uuid].progress.max = file.maxChunks;
},
onEnd: function(file) {
progressHelper[file.uuid].li.innerHTML = '<a href="' + file.url + '" target="_blank" download="' + file.name + '">' + file.name + '</a>';
},
onProgress: function(chunk) {
var helper = progressHelper[chunk.uuid];
helper.progress.value = chunk.currentPosition || chunk.maxChunks || helper.progress.max;
updateLabel(helper.progress, helper.label);
}
};
fileBufferReader.onBegin = FileHelper.onBegin;
fileBufferReader.onProgress = FileHelper.onProgress;
fileBufferReader.onEnd = FileHelper.onEnd;Credits
- Personal Webpage: http://www.muazkhan.com
- Email: muazkh@gmail.com
- Twitter: https://twitter.com/muazkh and https://twitter.com/WebRTCWeb
- Google+: https://plus.google.com/+WebRTC-Experiment
- Facebook: https://www.facebook.com/WebRTC
License
FileBufferReader.js is released under MIT licence . Copyright (c) Muaz Khan.