
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
n8n-nodes-azure-blob
Advanced tools
This is an n8n community node that allows you to interact with Azure Blob Storage in your n8n workflows.
To install this node in your n8n instance:
npm install n8n-nodes-azure-blob
npm install (or pnpm install)npm run build (or pnpm build)Add to your n8n Docker environment:
N8N_EXTERNAL_STORAGE=n8n-nodes-azure-blob
The node includes comprehensive error handling:
Enable Continue on Fail in node settings to handle errors gracefully in your workflows.
# Clone the repository
git clone https://github.com/pokash/n8n-nodes-azure-blob.git
cd n8n-nodes-azure-blob
# Install dependencies
npm install
# or with pnpm: pnpm install
# Build the project
npm run build
# or with pnpm: pnpm build
# Run linting
npm run lint
# or with pnpm: pnpm lint
# Format code
npm run format
# or with pnpm: pnpm format
├── credentials/
│ └── AzureBlobStorageApi.credentials.ts
├── nodes/
│ └── AzureBlobStorage/
│ ├── AzureBlobStorage.node.ts
│ └── azureBlob.svg
├── dist/ # Built files
├── package.json
├── tsconfig.json
└── README.md
containerName (string, required): Target container namebinaryPropertyName (string): Binary data property name (default: 'data')blobName (string): Custom blob name (optional)contentType (string): MIME type (auto-detected if not provided)containerName (string, required): Source container namedownloadBlobName (string, required): Blob name to downloaddownloadBinaryPropertyName (string): Output binary property namecontainerName (string, required): Container to listprefix (string): Filter by prefix (optional)maxResults (number): Maximum results to returncontainerName (string, required): Container namedeleteBlobName (string, required): Blob name to delete{
"blobName": "example.pdf",
"containerName": "documents",
"contentType": "application/pdf",
"size": 12345,
"etag": "\"0x8D9..\"",
"lastModified": "2024-01-15T10:30:00.000Z",
"url": "https://account.blob.core.windows.net/container/blob"
}
{
"blobName": "example.pdf",
"containerName": "documents",
"size": 12345,
"contentType": "application/pdf",
"lastModified": "2024-01-15T10:30:00.000Z",
"etag": "\"0x8D9..\"",
"url": "https://account.blob.core.windows.net/container/blob"
}
{
"containerName": "documents",
"blobs": [
{
"name": "file1.pdf",
"size": 12345,
"contentType": "application/pdf",
"lastModified": "2024-01-15T10:30:00.000Z",
"etag": "\"0x8D9..\"",
"url": "https://account.blob.core.windows.net/container/file1.pdf"
}
],
"totalCount": 1
}
For issues and questions:
MIT License - see LICENSE file for details.
pnpm lint and pnpm buildFAQs
n8n community node for Azure Blob Storage operations
We found that n8n-nodes-azure-blob demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.