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.
Demo page
Click here
Usage example
<script>
const spreadsheetId = '10WDbAPAY7Xl5DT36VuMheTPTTpqx9x0C5sDCnh4BGps'
const parser = new PublicGoogleSheetsParser(spreadsheetId)
parser.parse().then((items) => {
console.log(items)
})
</script>
That's it!