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

public-google-sheets-parser

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

public-google-sheets-parser

Public Google sheets parser for browser

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7K
decreased by-31.91%
Maintainers
1
Weekly downloads
 
Created
Source

Public Google sheets parser for browser


It is a simple parser for browser that helps you use public Google sheets document as if they were a database.

The document to be used must be a Google Sheets document in the 'public' state and have a header in the first row. (e.g. Google sheets for example)

It does not work in browsers where the fetch API is not available.

Currently, it is only available in the browser through the distribution file.

Usage example


// import distribution file before make GooglePublicSheetsParser instance. (see /dist/index.js)

const sheetsId = '10WDbAPAY7Xl5DT36VuMheTPTTpqx9x0C5sDCnh4BGps'
const parser = new GooglePublicSheetsParser(sheetsId)
parser.parse().then((items) => {
  console.log(items) // [{ a: 1, b: 2, c: 3}, { a: 4, b: 5, c: 6 }, ...]
})

That's it!

Keywords

FAQs

Package last updated on 16 Nov 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc