New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

excel-to-obj

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

excel-to-obj

this package use for google spreadsheets as database

1.0.0
unpublished
npm
Version published
Maintainers
1
Created
Source

const { google } = require("googleapis"); const { excelToObj } = require("./index"); const keys = require("./keys-35.json"); //////file downloaded from google console developer

const client = new google.auth.JWT(keys.client_email, null, keys.private_key, [ "https://www.googleapis.com/auth/spreadsheets", ]); const spreadsheetId = "#############################"; //////past your spreadsheet Id const dataRange = " spreadsheetName"; //, spreadsheet Name and after followed by "!" Enter the range Example "Data!A1:B4"

excelToObj(client, spreadsheetId, dataRange); ////////////function here pass org

Keywords

google

FAQs

Package last updated on 10 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts