
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@robinpath/google-sheets
Advanced tools
Google Sheets module for RobinPath.
The google-sheets module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
npm install @robinpath/google-sheets
1. Set up credentials
googleSheets.setCredentials "ya29.xxx"
2. Read values from a spreadsheet range.
googleSheets.getValues "spreadsheet_id" "Sheet1!A1:C10"
| Function | Description |
|---|---|
google-sheets.setCredentials | Set the OAuth2 access token for Google Sheets API. |
google-sheets.getValues | Read values from a spreadsheet range. |
google-sheets.setValues | Write values to a spreadsheet range. |
google-sheets.appendRow | Append a row of values to a spreadsheet. |
google-sheets.clearRange | Clear all values in a spreadsheet range. |
google-sheets.create | Create a new Google Spreadsheet. |
google-sheets.getSheets | List all sheets/tabs in a spreadsheet. |
google-sheets.addSheet | Add a new sheet/tab to a spreadsheet. |
google-sheets.deleteSheet | Delete a sheet/tab from a spreadsheet. |
google-sheets.findRows | Find rows matching a value in a specific column. |
googleSheets.getValues "spreadsheet_id" "Sheet1!A1:C10"
googleSheets.setValues "spreadsheet_id" "Sheet1!A1:B2" [[1,2],[3,4]]
googleSheets.appendRow "spreadsheet_id" "Sheet1!A:C" ["Alice", 25, "alice@example.com"]
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/google-sheets";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
googleSheets.setCredentials "ya29.xxx"
googleSheets.getValues "spreadsheet_id" "Sheet1!A1:C10"
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/google-calendar — Google Calendar module for complementary functionality@robinpath/google-contacts — Google Contacts module for complementary functionality@robinpath/google-forms — Google Forms module for complementary functionality@robinpath/gmail — Gmail module for complementary functionality@robinpath/outlook — Outlook module for complementary functionalityMIT
FAQs
Google Sheets integration — read, write, append, clear ranges and list sheet metadata. Service-account authentication using a JWT exchange (no user OAuth dance).
The npm package @robinpath/google-sheets receives a total of 11 weekly downloads. As such, @robinpath/google-sheets popularity was classified as not popular.
We found that @robinpath/google-sheets demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.