Google Docs API for Node.js

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

thanks

+8
javascript google-docs-api
source share
3 answers

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

+5
source share

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

0
source share

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.

0
source share

All Articles