Is there a Node.js library that covers all of Google's APIs into a single API? (Google Contacts, Google Calendar, Google Geolocations API, etc.)
Note: I'm the author of googleapis
module.
Google released an officially supported node client library for its APIs. https://github.com/google/google-api-nodejs-client It's also available on npm:
npm install googleapis
Load an API with its handle and version, then make requests:
googleapis.discover('urlshortener', 'v1').execute(function(err, client) {
// make requests here
client.urlshortener.url.get({ shortUrl: 'http://goo.gl/DdUKX' }).execute(console.log);
});
It also supports batch requests and OAuth 2.0.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With