sheetiq
v1.0.8
Published
<div align="center"> <img src="https://docapi.datafetchpro.com/featured_google_api.png" width="60%" /> <br /> <a href="https://discord.gg/ZkMMxZQf"><img src="https://img.shields.io/discord/1397785576253423616?color=5865F2&logo=discord&logoColo
Downloads
24
Maintainers
Readme
SheetIQ
📦 Installation
npm i sheetiqInitialize (JS)
const {SheetIQ}=require("sheetiq")
const sheet=new SheetIQ({token:"YOUR_BEARER_TOKEN"})
sheet.sheet=["SHEET_ID","SHEET_NAME"]Initialize (TypeScript)
import {SheetIQ} from "sheetiq"
const sheet=new SheetIQ({token:"YOUR_BEARER_TOKEN"})
sheet.sheet=["SHEET_ID","SHEET_NAME"]Get Google Sheet Data
await sheet.getSheet().then(i=>{
console.log(i) // you'll get data
})Update Google Sheet Data
await sheet.updateSheet({data:[["[email protected]"]],type:"update"})Append Google Sheet Data
await sheet.updateSheet({data:[["[email protected]"]],type:"append"})