1.0.2 • Published 2 years ago

easy-googlesheets v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

easy-googlesheets

An npm package to easily read Google Sheets data. The Share access should be "Anyone with the link can View".

Installation

$ npm install easy-googlesheets

API

getFromURL(spreadsheetURL, hasHeaders = false, gid = '')

getFromID(spreadsheetID, hasHeaders = false, gid = '')

Usage

const EasyGooglesheets = require("easy-googlesheets");

EasyGooglesheets.getFromURL('https://docs.google.com/spreadsheets/d/1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms/edit#gid=0', true)
  .then((rows) => {
    console.log(rows);
  });

EasyGooglesheets.getFromID('1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms', true)
  .then((rows) => {
    console.log(rows);
  });

Contributions

  • Feel Free to create a PR/Issue for any feature or bug(s).
  • Make sure you follow the community guidelines!
  • Have a feature request? Open an Issue!

License

This package is licensed under MIT

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago