1.0.2 • Published 8 years ago
sheetql v1.0.2
sheetql
Install
npm install sheetqlSetting up your spreadsheet
Create a Google Sheet with the first row as column names
| Name | Age | IsActive |
|---|---|---|
| bob | 99 | TRUE |
| john | 85 | FALSE |
Example
const Sheetql = require('sheetql');
const sheet = new Sheetql('SPREADSHEET_KEY');
const result = await sheet.query('SELECT *');
console.log(result);