0.0.3 • Published 8 years ago

gdocs-es6-data-backend v0.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

CSV Backend for es6

Fetch and query data from a google docs url

Quickstart

npm install gdocs-es6-data-backend

  import Gdocs from './node_modules/gdocs-es6-data-backend/src/index.js';
  const config = {
    url: 'https://docs.google.com/spreadsheet/ccc?key=0Aon3JiuouxLUdGZPaUZsMjBxeGhfOWRlWm85MmV0UUE#gid=0'
  };

  Gdocs.fetchTitle(config).then(data => {
    // use your data wisely
  });