npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

google-api-fetch

v2.2.1

Published

A lightweight Google API client using fetch for edge environments

Readme

google-api-fetch

A lightweight implementation of Google API client using fetch for edge environments like Cloudflare Workers, Deno, and browsers.

Features

  • Zero dependencies
  • Built for edge computing environments
  • Supports Google Drive, Docs, and Sheets APIs
  • Service account authentication
  • Fetch API-based HTTP requests
  • API compatible with the official googleapis package
  • Built-in rate limiting for API requests

Installation

npm install google-api-fetch
``` bash

## Usage
Basic setup 

```javascript
import GoogleApi from 'google-api-fetch';

// Service account credentials
const credentials = {
  client_email: '[email protected]',
  private_key: '-----BEGIN PRIVATE KEY-----\n...your key...\n-----END PRIVATE KEY-----\n'
};

// Create a Google API client instance
const googleApi = new GoogleApi(credentials, {
  enableRateLimiting: true,
  maxConcurrentRequests: 5,
  requestIntervalMs: 100
});

Drive API

// Initialize Drive API
const drive = googleApi.drive();

// List files
const filesList = await drive.files.list({
  pageSize: 10,
  fields: 'files(id, name, mimeType)'
});

// Get a file
const file = await drive.files.get({
  fileId: 'your-file-id'
});

// Create a file
const newFile = await drive.files.create({
  requestBody: {
    name: 'My Document',
    mimeType: 'application/vnd.google-apps.document'
  },
  media: {
    mimeType: 'text/plain',
    body: 'Hello, World!'
  }
});

// Export a file to a different format
const exportedFile = await drive.files.export({
  fileId: 'google-doc-id',
  mimeType: 'application/pdf'
});

Sheets API

// Initialize Sheets API
const sheets = googleApi.sheets();

// Get a spreadsheet
const spreadsheet = await sheets.spreadsheets.get({
  spreadsheetId: 'your-spreadsheet-id'
});

// Get values from a range
const values = await sheets.spreadsheets.values.get({
  spreadsheetId: 'your-spreadsheet-id',
  range: 'Sheet1!A1:D10'
});

// Update values in a range
const updateResult = await sheets.spreadsheets.values.update({
  spreadsheetId: 'your-spreadsheet-id',
  range: 'Sheet1!A1:D1',
  valueInputOption: 'RAW',
  resource: {
    values: [['Value1', 'Value2', 'Value3', 'Value4']]
  }
});

Docs API

// Initialize Docs API
const docs = googleApi.docs();

// Get a document
const document = await docs.documents.get({
  documentId: 'your-document-id'
});

// Create a document
const newDocument = await docs.documents.create({
  requestBody: {
    title: 'New Document'
  }
});

// Update a document
const updateResult = await docs.documents.batchUpdate({
  documentId: 'your-document-id',
  requestBody: {
    requests: [
      {
        insertText: {
          location: {
            index: 1
          },
          text: 'Hello World!'
        }
      }
    ]
  }
});