node-google-spreadsheet icon indicating copy to clipboard operation
node-google-spreadsheet copied to clipboard

Google Sheets API wrapper for Javascript / Typescript

Results 113 node-google-spreadsheet issues
Sort by recently updated
recently updated
newest added

Node version: v16.13.0 NPM version: 8.1.0 Package version: 3.3.0 What I do, cell.backgroundColor = { alpha: 1, red: 234, green: 179, blue: 138 } Color I expect to get: #EAB38A...

needs investigation

Hello, I am trying to add backgroundColor when the new row creates, but I can't make it work. I was able to set backgroundColor when I make some cell updates...

enhancement

I have used google-auth-library, JWT auth for auth. Just yesterday it was working, today it is not. https://theoephraim.github.io/node-google-spreadsheet/ Followed everything that was there in this docs. Also I’m using nextjs.

I am using this code from last year but after some updates in library it shows useServiceAccountAuth is not a function ``` const { GoogleSpreadsheet } = require("google-spreadsheet"); const creds...

closes https://github.com/theoephraim/node-google-spreadsheet/issues/566 example of using it to create a dropdown field in screenshot: ![image](https://github.com/theoephraim/node-google-spreadsheet/assets/10381896/6d3b900a-21a6-40fd-b3c3-648a0e69bcf8)

I'm currently working on a project where I need to access Google Sheets using the google-spreadsheet npm package. Due to restrictions, I'm based in China and using a VPN to...

How can I handle for example a socket hang up error ? Thanks.

Currently, using `loadCells()` will discard some columns if the first cell in the column is empty. Example below: ![image](https://github.com/theoephraim/node-google-spreadsheet/assets/41858005/ba1ff835-0e43-4df0-b5de-2fbfafa324a9) doing `await sheet.loadCells('A1:C4');` would only load the first 2 columns. How...