Google Cloud Storage

Node.js client library for Google Cloud Storage — upload, download, and manage buckets and objects programmatically.

SDK
npm
v8.0.1
3,193stars
Apache License 2.0

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
98/100Excellent
Development Activity100
Maintenance96
Community96
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
85/100Excellent
Architecture87
Code Quality88
Innovation84
Learning Curve82

@google-cloud/storage is Google’s official, hand-written Node.js client for Google Cloud Storage, published from the googleapis/google-cloud-node monorepo (path handwritten/storage). It wraps the GCS JSON/XML API behind a resource-oriented object model — Storage, Bucket, File, HmacKey, Notification, Channel — so applications can create and configure buckets, stream objects up and down, and manage access without hand-rolling HTTP requests.

Beyond basic CRUD, it implements GCS’s resumable upload protocol, multi-part parallel transfers via a dedicated Transfer Manager, V2/V4 signed URLs and signed POST policies, CRC32C/MD5 integrity validation, IAM policy and ACL management, and configurable retry/idempotency strategies — making it the standard choice for any Node.js service that reads or writes data to Cloud Storage.

What You Get

  • A Storage client plus Bucket/File resource objects mirroring GCS’s bucket/object hierarchy, each with getX/setX/createX/deleteX method families
  • Resumable upload support (resumable-upload.ts) and a parallel Transfer Manager for high-throughput multi-file/multi-chunk transfers
  • V2 and V4 signed URL and signed POST policy generation for delegated, time-limited client access without exposing service credentials
  • Built-in CRC32C and MD5 hash validation on upload/download, plus configurable RetryOptions and IdempotencyStrategy for safe automatic retries
  • IAM policy, ACL, HMAC key, Pub/Sub notification, and requester-pays management surfaced as first-class methods on Bucket/Storage
  • Dual ESM/CJS builds, full TypeScript types, and every method offered in both Promise and Node-style callback form

Common Use Cases

  • Serving static website assets or user-uploaded media directly from GCS buckets
  • Streaming large file uploads/downloads (backups, exports, ETL payloads) with resumable transfer guarantees
  • Issuing short-lived signed URLs so browser or mobile clients can upload/download directly to/from a bucket without a credentialed backend proxy
  • Bulk-migrating or syncing large object sets between buckets or local disk using the Transfer Manager’s parallelism
  • Enforcing object-level and bucket-level access control (IAM/ACL) as part of a multi-tenant storage layer

Under The Hood

Architecture — The client is centered on a Storage entry point (src/storage.ts) that extends a shared REST Service base (from the monorepo’s nodejs-common) and factories out Bucket (bucket.ts, ~4.7k lines) and File (file.ts, ~4.7k lines) instances representing GCS resources. Requests flow through shared Google Node.js building blocks — @google-cloud/paginator for list pagination, @google-cloud/promisify for the dual callback/promise surface, and google-auth-library for ADC/service-account auth. Large or resumable transfers are isolated into their own modules: resumable-upload.ts implements GCS’s chunked resumable-upload protocol directly, and transfer-manager.ts (~1k lines) coordinates parallel multi-file/multi-chunk uploads and downloads on top of it.

Tech Stack — TypeScript compiled to dual ESM and CJS output via separate tsconfig.json/tsconfig.cjs.json builds plus a Babel postcompile step, targeting Node >=18. Core runtime dependencies are Google’s own micro-libraries (@google-cloud/paginator, projectify, promisify), gaxios/teeny-request for HTTP transport, google-auth-library for authentication, duplexify/abort-controller for stream control, and fast-xml-parser for XML-API interop. Linting uses Google’s gts (Google TypeScript Style); tests run under Mocha with c8 coverage and sinon/nock/proxyquire/mockery for mocking HTTP and module boundaries.

Code Quality — The test/ directory (~18.4k lines) is nearly as large as src/ (~17.5k lines) and covers every public module (acl, bucket, channel, crc32c, file, hmacKey, iam, notification, resumable-upload, signer, transfer-manager) individually. Source files carry extensive TSDoc with runnable @example blocks embedded directly above nearly every public method. Errors surface as a typed ApiError from the shared nodejs-common layer, and retry behavior is explicit and configurable via RetryOptions/IdempotencyStrategy rather than silently swallowed.

API Design — A single named export, Storage, is instantiated with new Storage() (Application Default Credentials by default, or an explicit key file), and resources are addressed by chaining — storage.bucket(name).file(name) — mirroring GCS’s own hierarchy. Every method is offered in both callback and Promise form via matching XCallback/XResponse type pairs, and naming is consistent across resources (getX/setX/createX/deleteX), keeping the learning curve low for anyone who already knows one resource’s API surface.

Used by 21 apps in this directory

TypeScript
99%
Apache 2.0

Colanode

Knowledge Management · Team Chat · Collaboration

5,018

Local-first, self-hosted workspace that combines real-time chat, Notion-style pages, and structured databases — all synced via CRDTs so you work offline without losing a keystroke.

View details
47
Repo Health
73
Technical
73
Dependency
Built with
TypeScript99%
Updated 4 months ago
TypeScript
80%
Other

Directus

CMS · Low Code Platforms

37,462

Connect any SQL database and get instant REST and GraphQL APIs, a visual management Studio, and a native MCP server for AI agents — free for most organizations.

View details
93
Repo Health
82
Technical
78
Dependency
Built with
TypeScript80%
Vue18%
Updated yesterday
TypeScript
72%
AGPL 3.0

Firecrawl

AI Development · Developer Tools

169,311

Turn any website into clean, LLM-ready data with a single API call — no proxy headaches, no scraping complexity.

View details
89
Repo Health
83
Technical
66
Dependency
Built with
TypeScript72%
Python14%
Updated today
TypeScript
62%
Other

Flowise

Developer Tools · Automation · No Code Platforms

55,379

Drag-and-drop visual builder for AI agents, RAG pipelines, and multi-agent systems—deploy anywhere in minutes.

View details
91
Repo Health
77
Technical
64
Dependency
Built with
TypeScript62%
JavaScript27%
Updated 6 days ago
TypeScript
97%
Other

GrowthBook

Developer Tools · Analytics · Monitoring

8,138

Open source feature flags, A/B testing, and warehouse-native experimentation that queries your existing data infrastructure—no data movement required.

View details
92
Repo Health
85
Technical
66
Dependency
Built with
TypeScript97%
Updated today
TypeScript
89%
Apache 2.0

HyperFrames

AI Development · AI Design Tools

41,625

Turn plain HTML and CSS into deterministic, pixel-perfect MP4 videos — authored by humans or AI agents, rendered by headless Chrome and FFmpeg.

View details
82
Repo Health
83
Technical
65
Dependency
Built with
TypeScript89%
Updated today
TypeScript
98%
Other

Langfuse

AI Development · Monitoring

33,366

Open source AI engineering platform for LLM observability, prompt management, evaluation, and debugging — self-host in minutes or use Langfuse Cloud.

View details
92
Repo Health
81
Technical
66
Dependency
Built with
TypeScript98%
Updated today
TypeScript
95%
Other

LLM Gateway

AI Development · Devops

1,555

One API endpoint for 25+ LLM providers — route, track costs, enforce compliance, and switch models without changing your code.

View details
85
Repo Health
80
Technical
72
Dependency
Built with
TypeScript95%
Updated today
TypeScript
97%
MPL 2.0

Logto

Authentication

14,380

Open-source auth infrastructure for SaaS and AI apps with OIDC, SAML, and RBAC

View details
91
Repo Health
83
Technical
67
Dependency
Built with
TypeScript97%
Updated today

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search