sheets-to-array-of-objects
v2.0.1
Published
Convert Public Google Spreadsheet into JavaScript Array of Objects. Works with multipage documents
Downloads
2
Readme
sheet-to-array-of-objects
Convert Public Google Spreadsheet into JavaScript Array of Objects
Fork of hotelsoft/sheet-to-array-of-objects. This version allows multi page download and can also return the name of the downloaded page.
What
Install
npm install sheet-to-array-of-objects
Try
var SheetToArrayOfObjects = require('sheet-to-array-of-objects');
SheetToArrayOfObjects({
key: "1GMWX3mMBPRnaIC3lTlRQfDhayELKFmpJWLYu2eM20dQ"
}, function (err, data, title) {
if (err) {
console.log(err);
return;
}
console.log($`Got json for ${title}`, data);
});