google-api-nodejs-client

Google's officially supported Node.js client library for calling hundreds of Google APIs with built-in OAuth 2.0, API key, and service-account auth.

SDK
npm
v176.0.0
12,231stars
Apache License 2.0

Repository Health

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

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
88/100Excellent
Architecture90
Code Quality85
Innovation90
Learning Curve80

googleapis is the official, Google-maintained Node.js client for accessing the full catalog of Google’s REST APIs, from Drive, Calendar, Gmail, and Sheets to YouTube, Ad platforms, and Admin SDK. A single package exposes strongly-typed, auto-generated clients for hundreds of services, each versioned and mirrored directly from Google’s Discovery documents so the surface stays in lockstep with the live APIs.

Beyond the API bindings, the library bundles first-class authentication and authorization: OAuth 2.0 flows, API keys, JWTs, service-account credentials, and application default credentials are handled through the included google-auth-library, letting you authenticate once and reuse a client across every supported service.

What You Get

  • Auto-generated, strongly-typed clients for hundreds of Google APIs, each pinned to specific service versions
  • Built-in authentication for OAuth 2.0, API keys, JWTs, service accounts, and application default credentials
  • A consistent factory pattern (google.<api>({version, auth})) that works identically across every service
  • Support for media uploads/downloads, request options, proxies, and HTTP/2
  • The option to install per-API submodules (e.g. @googleapis/docs) to reduce startup time and bundle size

Common Use Cases

  • Backend services that read and write Google Workspace data such as Drive files, Calendar events, or Gmail messages
  • Server-to-server automation against Google APIs using service-account credentials
  • Building OAuth 2.0 sign-in and delegated access flows for end users
  • Integrating YouTube, Ads, Analytics, or Admin SDK data into applications and dashboards

Under The Hood

Architecture — The public entry point src/index.ts exports a singleton google (an instance of GoogleApis from src/googleapis.ts), which extends a GeneratedAPIs base assembled from src/apis. Each of the 327 service directories under src/apis is auto-generated from Google’s Discovery documents (stored in discovery/) by the code in src/generator, so the entire typed surface is machine-produced rather than hand-written. Calling google.drive({version, auth}) returns an APIEndpoint whose methods delegate HTTP execution and Discovery resolution to the shared googleapis-common runtime, while authentication is centralized in an AuthPlus instance backed by google-auth-library. This keeps the massive generated surface thin: the runtime lives in two dependencies and the repo is mostly generated bindings plus the generator that produces them.

Tech Stack — Written in TypeScript (99.7% of the codebase) targeting Node.js >=18, published as compiled JS with .d.ts types. Runtime dependencies are deliberately minimal — google-auth-library for credentials and googleapis-common for the request/Discovery machinery. Tooling includes tsc for compilation, gts (Google TypeScript Style) for lint/format, mocha with c8 for tests and coverage, and nock/sinon/proxyquire for HTTP mocking; docs are generated via jsdoc and the Microsoft API Extractor/Documenter pipeline.

Code Quality — The test/ directory holds roughly 20 focused suites (test.auth.ts, test.clients.ts, test.discover.ts, test.apikey.ts, test.download.ts, per-API tests, and more) that exercise auth, client construction, Discovery, and media handling using nock to stub HTTP. Style and formatting are enforced by gts, TypeScript strictness gives compile-time guarantees across the generated surface, and release automation runs through release-please with per-API changelogs. Because most API code is generated, correctness centers on the generator and the common runtime rather than per-service hand-maintenance.

API Design — The developer experience is intentionally uniform: every one of the hundreds of services is reached through the same google.<api>({version, auth}) factory, and resource methods mirror the REST hierarchy (e.g. blogger.blogs.get(params)) with both callback and async/await styles. Auth is configured once and shared globally or per service. Extensive README guidance, a full auto-generated API reference, and a large samples/ tree make onboarding straightforward, though the sheer breadth of services and the generated, sometimes verbose type names are the main friction points.

Used by 25 apps in this directory

TypeScript
100%
MIT

Botpress

AI Assistants · AI Development · Customer Support

14,872

The open-source hub for building and deploying LLM-powered AI agents with TypeScript-first tooling, 40+ integrations, and a revolutionary code-execution agent framework.

View details
95
Repo Health
82
Technical
66
Dependency
Built with
TypeScript100%
Updated yesterday
TypeScript
96%
Other

Cal.diy

Scheduling

47,796

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

View details
93
Repo Health
86
Technical
66
Dependency
Built with
TypeScript96%
Updated 1 weeks ago
JavaScript
99%
Other

ChartBrew

Analytics · Databases

4,041

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
65
Dependency
Built with
JavaScript99%
Updated 6 days ago
TypeScript
45%
Other

Convex Backend

Developer Tools · Databases

12,394

Open-source reactive database that lets developers build live-updating apps with pure TypeScript, strong consistency, and real-time subscriptions—no separate API layer required.

View details
88
Repo Health
82
Technical
70
Dependency
Built with
TypeScript45%
Rust43%
Updated today
TypeScript
98%
Other

Formbricks

Forms Surveys · Marketing · Analytics

12,790

Open-source experience management platform for in-app, website, email, and link surveys — privacy-first and fully self-hostable.

View details
93
Repo Health
81
Technical
73
Dependency
Built with
TypeScript98%
Updated today
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
95%
AGPL 3.0

HeyForm

Forms Surveys · No Code Platforms

8,938

Open-source conversational form builder with AI generation, conditional logic, and 30+ integrations — self-host with full data ownership.

View details
86
Repo Health
67
Technical
69
Dependency
Built with
TypeScript95%
Updated today
TypeScript
61%
EPL-2.0

Huly Platform

Project Management · Team Chat · Collaboration

27,384

Open-source all-in-one workspace that replaces Linear, Jira, Slack, and Notion for product and engineering teams.

View details
90
Repo Health
86
Technical
64
Dependency
Built with
TypeScript61%
Svelte34%
Updated 1 weeks ago
TypeScript
56%
MIT

Jitsu

Data Engineering

5,035

Open-source, fully-scriptable data ingestion engine that streams events from web, apps, and APIs to any data warehouse in real time.

View details
89
Repo Health
79
Technical
68
Dependency
Built with
TypeScript56%
Go41%
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