Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/HarryStevens/stupid-sheets
A stupid simple Google Sheets reader.
https://github.com/HarryStevens/stupid-sheets
Last synced: 18 days 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T07:50:40.000Z (almost 2 years ago)
- Last Synced: 2024-10-15T02:25:51.406Z (30 days ago)
- Language: JavaScript
- Size: 43.9 KB
- Stars: 4
- Watchers: 2
- 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. [![Build Status](https://travis-ci.org/HarryStevens/stupid-sheets.svg?branch=master)](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);
});
```