metalsmith-google-sheets
v0.2.8
Published
Metalsmith plugin to ingest google-sheets using node-google-spreadsheets
Downloads
4
Maintainers
Readme
metalsmith-google-sheets
Metalsmith plugin to ingest google-sheets using node-google-spreadsheets
Configuring the sheets and the API
See node-google-spreadsheet docs
Installation
npm --save metalsmith-google-sheets
Usage
For now please review the tests
You need to have a Google API account, and set up your sheet accordingly, instructions here: node-google-spreadsheet docs
CLI
"metalsmith-google-sheets": {
"key": "THE_SPREADSHEET_KEY",
"serviceAccountEmail": "YOUR_APP_EMAIL_ADDRESS",
"privateKey": "YOUR_API_PRIVATE_KEY_HERE"
}
JS
.use(googleSheets({
key: "THE_SPREADSHEET_KEY",
serviceAccountEmail: "YOUR_APP_EMAIL_ADDRESS",
privateKey: "YOUR_API_PRIVATE_KEY_HERE"
}))