7

Is there a JavaScript API or third party framework for Google Docs that I can use in Node.js?

Thanks

Van Coding
  • 24,244
  • 24
  • 88
  • 132

3 Answers3

5

Google apps allows RESTful api's to access resources. Please refer the protocol guide for the same

http://code.google.com/apis/documents/docs/developers_guide.html

nibin012
  • 1,793
  • 2
  • 15
  • 14
0

There are a few plugins to read google spreadsheets though not many to do batch updates. So if you just want to update google spreadsheets, check out: https://github.com/jpillora/node-edit-google-spreadsheet

jpillora
  • 5,194
  • 2
  • 44
  • 56
  • Unfortunately this library does not support appending new rows to the current Spreadsheet. http://www.verious.com/code/jpillora/node-edit-google-spreadsheet/ Are there any other libraries you would suggest? Thanks. – ruggershawn Sep 03 '13 at 19:57
0

As nelsonic mentions in his reply to nibin012, there is niftylettuce's node-google-drive node.js module: https://npmjs.org/package/google-drive

Then the Google Drive API there is Google OAuth for "service"/server apps mentioned in the following links: https://developers.google.com/accounts/docs/OAuth2#scenarios https://developers.google.com/accounts/docs/OAuth2ServiceAccount

However in the latter link there is no support for a JavaScript library yet.

Mikeumus
  • 3,570
  • 9
  • 40
  • 65