DigitalOcean Spaces
DigitalOcean Spaces via the S3-compatible API. Endpoint derived from the region, virtual-hosted addressing.
Installation
@aws-sdk/client-s3, @aws-sdk/s3-presigned-post, and @aws-sdk/s3-request-presigner are optional peer dependencies of files-sdk - install alongside the SDK so the adapter's imports resolve at runtime.
DigitalOcean Spaces via the S3-compatible API. A thin wrapper around the S3 adapter - endpoint derived from the region you pass, errors relabelled, virtual-hosted addressing left as the default. Auto-loads from DO_SPACES_KEY and DO_SPACES_SECRET.
import { Files } from "files-sdk";import { digitaloceanSpaces } from "files-sdk/digitalocean-spaces";const files = new Files({ adapter: digitaloceanSpaces({ bucket: "uploads", region: "nyc3", // accessKeyId / secretAccessKey auto-loaded from // DO_SPACES_KEY / DO_SPACES_SECRET }),});