A stupid simple Google Sheets reader.
npm i stupid-sheets -S
stupid-sheets loads a published Google Sheet's data as JSON in Node.js.
const googleSheetsId = "1PP72fxscsKti-QYHjllLN2FSie12eollE1QMh1a47Rg";
require("stupid-sheets")(googleSheetsId, json => {
console.log(json);
});