I am trying to integrate google-api-nodejs-client with azure mobile-services. I get following runtime error trying to use sample code from googleapis:
Error: Unable to load endpoint plus("v1"): Cannot read property 'prototype' of undefined
This error seems to be due to reason that googleapis only support nodejs version 0.10 and higher, whereas azure mobile-services are running nodejs version 0.8.28.
Is there a way I can use more latest version of nodejs on azure mobile-service?
A workaround suggested by David Ebbo on Azure Support Site
You may want to try something like this as a workaround:
at the root of the repo, you'll find a .deployment file that has:
Change it to
And create a deploy.cmd next to it containing:
Commit both files and push.