https://github.com/HarryStevens/stupid-sheets
A stupid simple Google Sheets reader.
https://github.com/HarryStevens/stupid-sheets
Last synced: 2 months 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T07:50:40.000Z (over 2 years ago)
- Last Synced: 2025-03-08T06:47:26.920Z (3 months 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);
});
```