Google's client JS library for its APIs is : https://code.google.com/p/google-api-javascript-client/wiki/GettingStarted
I was wondering if there was any way I could use this with node.js
(I'm writing a small app that uses the google calendar api. I'm very new to node.js)
Google has a node.js client library for its APIs: https://github.com/google/google-api-nodejs-client
var googleapis = require('googleapis');
googleapis.discover('calendar', 'v3').execute(function(err, client) {
// authenticate and make requests here
});