Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.