googlesheet-to-json
v1.0.0
Published
Node.js library to read from Google Sheets API (v4) and convert to JSON collection
Downloads
4
Readme
Googlesheet-to-json
Node.js library to read a Google Sheet (v4) and convert to JSON collection
Install
npm install googlesheet-to-json --save
Setup Google API credentials (Service Account)
CLI
npm install -g googlesheet-to-json
googlesheet-to-json <spreadsheetId> -s 'Sheet1' > out.json
API
// see 'Getting Credentials' below
const { private_key, client_email } = require('./googleServiceAccount.json')
const GoogleSheetToJSON = require('googlesheet-to-json')
const gSheetToJSON = new GoogleSheetToJSON({ private_key, client_email })
const spreadsheetId = '1gTERIVPV_0yoMXc6mlBtBpNvaoH5pIU2IC-75V_Qcas'
const range = 'Sheet1'
gSheetToJSON.getRows({ spreadsheetId, range })
.then(rows => console.log('rows:', rows))
.catch(console.error)
Getting credentials
- Login to Google API console
- Create 'Service Account' credentials @ https://console.developers.google.com/apis/credentials
- Download credentials json file and rename to
googleServiceAccount.json
- Copy
googleServiceAccount.json
to root of your project and add to.gitignore