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,197stars
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 96 apps in this directory

TypeScript
99%
Other

Activepieces

Automation · AI Assistants

24,298

Open-source AI automation platform that converts 280+ workflow integrations into MCP servers for LLMs, with no-code builders and TypeScript extensibility.

View details
92
Repo Health
85
Technical
64
Dependency
Built with
TypeScript99%
Updated today
TypeScript
99%
Other

Activepieces

Automation · AI Assistants

24,298

Open-source AI automation platform that converts 280+ workflow integrations into MCP servers for LLMs, with no-code builders and TypeScript extensibility.

View details
92
Repo Health
85
Technical
64
Dependency
Built with
TypeScript99%
Updated today
TypeScript
87%
Other

AFFiNE

Productivity · Project Management · Note Taking

72,238

Write, draw, and plan in one infinite canvas — the open-source alternative to Notion and Miro that keeps your data yours.

View details
91
Repo Health
87
Technical
67
Dependency
Built with
TypeScript87%
Updated yesterday
TypeScript
69%
Other

Budibase

Low Code Platforms · No Code Platforms

28,260

Build AI agents, automations, and internal apps on a single open-source platform with full self-hosting control.

View details
91
Repo Health
81
Technical
63
Dependency
Built with
TypeScript69%
Svelte26%
Updated 2 days ago
TypeScript
69%
Other

Budibase

Low Code Platforms · No Code Platforms

28,260

Build AI agents, automations, and internal apps on a single open-source platform with full self-hosting control.

View details
91
Repo Health
81
Technical
63
Dependency
Built with
TypeScript69%
Svelte26%
Updated 2 days ago
TypeScript
96%
Other

Cal.diy

Scheduling

48,218

The 100% MIT-licensed, community-driven scheduling platform — self-host your own booking infrastructure with no enterprise strings attached.

View details
95
Repo Health
86
Technical
65
Dependency
Built with
TypeScript96%
Updated yesterday
JavaScript
99%
Other

ChartBrew

Analytics · Databases

4,054

Open-source reporting platform to build live dashboards from SQL, NoSQL, APIs, and SaaS tools with an AI assistant that creates charts from natural language.

View details
90
Repo Health
83
Technical
64
Dependency
Built with
JavaScript99%
Updated 4 days ago
JavaScript
99%
Other

ChartBrew

Analytics · Databases

4,054

Open-source reporting platform to build live dashboards from SQL, NoSQL, APIs, and SaaS tools with an AI assistant that creates charts from natural language.

View details
90
Repo Health
83
Technical
64
Dependency
Built with
JavaScript99%
Updated 4 days ago
TypeScript
99%
AGPL 3.0

Cherry Studio

AI Assistants

51,521

All-in-one AI desktop client with 300+ assistants and multi-model support

View details
89
Repo Health
84
Technical
71
Dependency
Built with
TypeScript99%
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