Google SpreadSheet Reader Demo

SpreadSheet Link: https://docs.google.com/spreadsheets/d/1lBbCRh6N2Ozz8oEB9fIRN4vuUNQhErqGbAQbHAu2w5Q/edit#gid=219139375

Github: https://github.com/mayognaise/google-spreadsheet-reader

Code:

  
var SpreadSheet = require('google-spreadsheet-reader');

// Create SpreadSheet Object
var spreadSheet = new SpreadSheet('1lBbCRh6N2Ozz8oEB9fIRN4vuUNQhErqGbAQbHAu2w5Q');

spreadSheet.load({ camelcase: true })
  .then(function(res) { console.log(res); }) // JSON with camelcased properties!
  .catch(function(err) { console.error(err.message); });
  

Result: