
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
@dstanesc/az-block-store
Advanced tools
Simple content-addressable storage (CAS) based on Azure Blob Storage
Simple content-addressable storage (CAS) based on Azure Blob Storage.
put: (block: { cid: any, bytes: Uint8Array }) => Promise<void>
get: (cid: any) => Promise<Uint8Array>
// connect to Azure, see more @ https://learn.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-nodejs
const accountName = ...
const blobServiceClient: BlobServiceClient = new BlobServiceClient(
`https://${accountName}.blob.core.windows.net`,
new DefaultAzureCredential()
)
const randomContainerName = ...
containerClient: ContainerClient = blobServiceClient.getContainerClient(randomContainerName)
await containerClient.create()
// optional cache
const cache = {}
// az-block-store api
const { get, put } = blockStore({ /*cache,*/ containerClient })
npm run clean
npm install
npm run build
Configure your storage account
export AZURE_STORAGE_ACCOUNT_NAME=xyz
npm run test
Licensed under either Apache 2.0 or MIT at your option.
FAQs
Simple content-addressable storage (CAS) based on Azure Blob Storage
The npm package @dstanesc/az-block-store receives a total of 8 weekly downloads. As such, @dstanesc/az-block-store popularity was classified as not popular.
We found that @dstanesc/az-block-store demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.