https://github.com/harrystevens/stupid-sheets
A stupid simple Google Sheets reader.
https://github.com/harrystevens/stupid-sheets
Last synced: over 1 year ago
JSON representation
A stupid simple Google Sheets reader.
- Host: GitHub
- URL: https://github.com/harrystevens/stupid-sheets
- Owner: HarryStevens
- License: mit
- Created: 2019-06-26T15:36:08.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T07:50:40.000Z (over 3 years ago)
- Last Synced: 2025-03-15T20:32:51.436Z (over 1 year ago)
- Language: JavaScript
- Size: 43.9 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stupid-sheets
A stupid simple Google Sheets reader. [](https://travis-ci.org/HarryStevens/stupid-sheets)
## Installation
```bash
npm i stupid-sheets -S
```
## Usage
stupid-sheets loads a published Google Sheet's data as JSON in Node.js.
```js
const googleSheetsId = "1PP72fxscsKti-QYHjllLN2FSie12eollE1QMh1a47Rg";
require("stupid-sheets")(googleSheetsId, json => {
console.log(json);
});
```