Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
A small utility to upload your web assets to Azure Blob Storage. The idea is that after you build your website with tools like Create React App, you could upload it to a blob, and then put a CDN in front of it.
This application requires Node 4+ to run.
As a CLI tool
npm install -g web2blob
As a library
npm install --save-dev web2blob
web2blob --s webfolder -d container [options]
Run web2blob --help
to get a quick overview of all commands.
const web2blob = require('web2blob');
const options = {
source: './build', // Path of the folder where to upload the assets.
destination: 'myweb', // Name of the blob container where to upload.
// Default options (no need to pass them)
cache: 3600, // Time in ms to cache regular files.
maxConnections: 5, // Max simultaneous connections to the blob.
statics: 'static', // Folder where to cache files for 1 year.
zip: true // Whether to gzip the files or not.
};
web2blob(options)
.then(() => {
// Files uploaded succesfully to the blob.
})
.catch(error => {
// Something happened.
});
FAQs
Upload all your web assets to Azure Blob Storage with a simple command!
We found that web2blob demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.