Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/product-os/dreamsheets
Makes working with Google sheets a dream
https://github.com/product-os/dreamsheets
Last synced: 6 days ago
JSON representation
Makes working with Google sheets a dream
- Host: GitHub
- URL: https://github.com/product-os/dreamsheets
- Owner: product-os
- License: apache-2.0
- Created: 2021-03-23T10:38:06.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-09T14:50:15.000Z (6 months ago)
- Last Synced: 2024-05-13T03:37:23.953Z (6 months ago)
- Language: TypeScript
- Homepage: https://product-os.github.io/gsheet-utils/
- Size: 198 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[![npm version](https://badge.fury.io/js/dreamsheets.svg)](https://badge.fury.io/js/dreamsheets)
Makes working with Google sheets a dream!
https://product-os.github.io/dreamsheets
Dreamsheets is a simple, easy to use, and powerful tool for managing your Google Sheets through Google Apps Script.
## Installation
Install by running:
```sh
npm install --save dreamsheets
```## Usage
For example, you can read from a sheet like this:
```javascript
import { readSheet } from "dreamsheets";const mySheetData = readSheet("Sheet Name", { range: "A1:Z100" });
```## Documentation
[![Publish Documentation](https://github.com/product-os/dreamsheets/actions/workflows/publish-docs.yml/badge.svg)](https://github.com/product-os/dreamsheets/actions/workflows/publish-docs.yml)
Visit the website for complete documentation: https://product-os.github.io/dreamsheets
## Development
CI-less local workflow for windows, (should also work on mac and linux)
```bash
$ cd ./dreamsheets
$ npm install
$ npm link$ cd ./path-to/my-new/example-model-repo
$ npm install
$ npm link dreamsheets# now make changes to dreamsheets, build them and then test them
```## License
The project is licensed under the Apache-2.0 license.
The icon at the top of this file is provided by
[svgrepo.com](https://www.svgrepo.com/svg/206802/sheep) and is
licensed under [Creative Commons CC0](https://creativecommons.org/publicdomain/zero/1.0/).