n8n/packages/@n8n/blob-storage
2026-07-22 12:22:37 +00:00
..
src refactor(core): Store binary data via blob storage primitives (#34707) 2026-07-22 12:22:37 +00:00
eslint.config.mjs refactor(core): Move S3 and Azure clients to @n8n/blob-storage (#34567) 2026-07-21 09:10:06 +00:00
package.json refactor(core): Move S3 and Azure clients to @n8n/blob-storage (#34567) 2026-07-21 09:10:06 +00:00
README.md refactor(core): Move S3 and Azure clients to @n8n/blob-storage (#34567) 2026-07-21 09:10:06 +00:00
tsconfig.build.json refactor(core): Move S3 and Azure clients to @n8n/blob-storage (#34567) 2026-07-21 09:10:06 +00:00
tsconfig.json refactor(core): Move S3 and Azure clients to @n8n/blob-storage (#34567) 2026-07-21 09:10:06 +00:00
vite.config.ts refactor(core): Move S3 and Azure clients to @n8n/blob-storage (#34567) 2026-07-21 09:10:06 +00:00

@n8n/blob-storage

Blob storage layer for n8n. Hosts the external-storage clients used to persist blobs (execution data, binary data) outside the database:

  • ObjectStoreService (@n8n/blob-storage/object-store): S3-compatible object storage
  • AzureBlobService (@n8n/blob-storage/azure-blob): Azure Blob Storage

The root entrypoint is free of cloud SDK imports: it exposes only types, configs, and stream utilities. The services live behind the subpath exports above and are meant to be loaded with await import() so the S3/Azure SDKs are pulled in only when external storage is configured.