b2-cloud-storage
Backblaze B2 Cloud Storage API Client
b2-cloud-storage
is an API wrapper for all current Backblaze B2 API operations. It provides helper methods for uploading files of all sizes, and takes care of the necessary chunking, parting, and API retries that need to happen to ensure files are uploaded successfully.
This module adheres the integration guidelines as published by Backblaze at https://www.backblaze.com/b2/docs/integration_checklist.html.
Basic Example
'use strict';
const b2CloudStorage = require('b2-cloud-storage');
const b2 = new b2CloudStorage({
auth: {
accountId: '<accountId>',
applicationKey: '<applicationKey>'
}
});
b2.authorize(function(err){
if(err){ throw err; }
b2.uploadFile('/path/to/file.zip', {
bucketId: '<bucketId>',
fileName: 'file.zip',
contentType: 'application/zip',
onUploadProgress: function(update){
console.log(`Progress: ${update.percent}% (${update.bytesDispatched}/${update.bytesTotal}`);
}
}, function(err, results){
});
});
Documentation
You can read the full documentation here.
Roadmap:
License