All Projects â†’ bradoyler â†’ googledoc-to-json

bradoyler / googledoc-to-json

Licence: other
📑 Read a Google Drive Doc and convert to JSON (via ArchieML)

Programming Languages

javascript
184084 projects - #8 most used programming language

googledoc-to-json

Node.js library to read a Google Drive Doc and convert to JSON (via ArchieML)

Install

npm install googledoc-to-json --save

Examples

CLI

$ npm install -g googledoc-to-json
$ googledoc-to-json <doc-id> -c .gtokens.json -o output.json

API

const GoogleDocToJSON = require('googledoc-to-json');
const config = require('./config.json'); // see 'Getting Credentials' below
const gDocToJSON = new GoogleDocToJSON(config);

const options = {
    fileId: '1gTERIVPV_0yoMXc6mlBtBpNvaoH5pIU2IC-75V_Qcas',
    oAuthTokens: config.oAuthTokens
};

gDocToJSON.getArchieML(options, function (err, aml) {
    console.log('## ArchieML output', err, aml);
});

Getting credentials

  1. cp .gtokens.example.json .gtokens.json
  2. Run the amazing Google-Tokens
  3. Populate .gtokens.json with appropriate values

Todos:

  • Add Mocha tests
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].