2.0.1 • Published 4 years ago

sheets-to-array-of-objects v2.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

sheet-to-array-of-objects

npm

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

alt pic

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);
});