
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@tus/azure-store
Advanced tools
@tus/azure-storeAzure Store based on the Append Blob Client Azure Blob AppendBlobClient.
In Node.js >=20.19.0, install with npm:
npm install @tus/azure-store
const {Server} = require('@tus/server')
const {AzureStore} = require('@tus/azure-store')
const server = new Server({
path: '/files',
datastore: new AzureStore({
account: process.env.AZURE_ACCOUNT_ID,
accountKey: process.env.AZURE_ACCOUNT_KEY,
containerName: process.env.AZURE_CONTAINER_NAME,
}),
})
// ...
This package exports AzureStore. There is no default export.
new AzureStore(options)Creates a new azure store with options.
options.accountAzure account ID (string).
options.accountKeyAzure account key (string).
options.containerNameAzure storage container name (string).
options.cacheProvide your own cache solution for the metadata of uploads (KvStore) to reduce the calls to storage server.
Default is (MemoryKvStore) which stores the data in memory.
The tus protocol supports optional extensions. Below is a table of the supported
extensions in @tus/azure-store. More will be added in the future releases.
| Extension | @tus/file-store |
|---|---|
| Creation | ✅ |
| Creation With Upload | ✅ |
| Expiration | ❌ |
| Checksum | ❌ |
| Termination | ❌ |
| Concatenation | ❌ |
This package is fully typed with TypeScript.
This package requires Node.js >=20.19.0.
See
contributing.md.
FAQs
Azure blob storage for @tus/server
We found that @tus/azure-store demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.