
Tigris Has a Free Globally Distributed S3-Compatible Object Storage — No Egress Fees
Tigris Has a Free Globally Distributed Object Storage S3 charges for egress. Cloudflare R2 is region-locked. Tigris automatically distributes your data globally and charges zero egress fees. What Tigris Does Tigris is a globally distributed, S3-compatible object storage: S3 API compatible — drop-in replacement for AWS S3 Global distribution — data cached at edge locations automatically Zero egress fees — download as much as you want Auto-caching — frequently accessed objects cached near users Fly.io integration — native integration with Fly apps Quick Start # Create a bucket via Fly.io fly storage create my-bucket # Or use any S3 SDK import { S3Client, PutObjectCommand } from "@aws-sdk/client-s3" ; const client = new S3Client ({ region: "auto" , endpoint: "https://fly.storage.tigris.dev" , credentials: { accessKeyId: process.env.AWS_ACCESS_KEY_ID, secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY, } }) ; await client.send ( new PutObjectCommand ({ Bucket: "my-bucket" , Key: "photo.jpg
Continue reading on Dev.to DevOps
Opens in a new tab




