Skip to content

bradoyler/paper2json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Paper2JSON

In summary, the coolest thing ever.
Also converts a Dropbox paper document to JSON using ArchieML.

Sister project to Googledoc-to-json

CLI Usage

$ npx paper2json <Dropbox docId> -t <Dropbox Access Token>
// will output aml.json (default)

API

const fs = require('fs')
const paper2json = require('paper2json')
paper2json(docId, accessToken)
  .then(aml => fs.writeFileSync('test/aml.json', JSON.stringify(aml, null, '\t')))

Get a damn access token by reading this...

Testing

$ ACCESS_TOKEN=xxyyzz npm test