
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
b2-cloud-storage
Advanced tools
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.
'use strict';
const b2CloudStorage = require('b2-cloud-storage');
const b2 = new b2CloudStorage({
auth: {
accountId: '<accountId>', // NOTE: This is the accountId unique to the key
applicationKey: '<applicationKey>'
}
});
b2.authorize(function(err){
if(err){ throw err; }
// this function wraps both a normal upload AND a large file upload
b2.uploadFile('/path/to/file.zip', {
bucketId: '<bucketId>',
fileName: 'file.zip', // this is the object storage "key". Can include a full path
contentType: 'application/zip',
onUploadProgress: function(update){
console.log(`Progress: ${update.percent}% (${update.bytesDispatched}/${update.bytesTotal}`);
// output: Progress: 9% 9012/100024
}
}, function(err, results){
// handle callback
});
});
You can read the full documentation here.
FAQs
Backblaze B2 Cloud Storage API Client
The npm package b2-cloud-storage receives a total of 17 weekly downloads. As such, b2-cloud-storage popularity was classified as not popular.
We found that b2-cloud-storage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.