Is there a JavaScript API or third-party framework for Google Docs that I can use in Node.js?
thanks
Google apps allow RESTful api access to resources. Please refer to the protocol manual for the same
http://code.google.com/apis/documents/docs/developers_guide.html
There are several plugins for reading Google spreadsheets, although not many for batch updates. Therefore, if you just want to update google spreadsheets, check out: https://github.com/jpillora/node-edit-google-spreadsheet
As nelsonik mentions in his answer to nibin012, there is a node-google-drive node.js module: https://npmjs.org/package/google-drive
Then, the Google Drive API has Google OAuth for the โserviceโ / server applications mentioned in the following links: https://developers.google.com/accounts/docs/OAuth2#scenarios https://developers.google.com/accounts/ docs / OAuth2ServiceAccount
However, in the last link, JavaScript support is not yet supported.