Alexander Fenster
Alexander Fenster
Yes, we finally got v7 out - and also dropped support for older versions of Node.js (we start from 12 now). I should say I'm not sure how we properly...
@ThePlenkov Would it be possible to add a unit test for this case? Thank you!
@jation Sorry, I don't have contributor access to this repo, please ask @dcodeIO for help with this.
Hi folks, If you keep seeing `13 INTERNAL` errors mentioning `RST_STREAM` with code 2, please make sure you updated your dependency tree: `rm -rf node_modules package-lock.json && npm install`. Please...
Sofia, could you followup with the API team? Thank you!
@MarkDuckworth It works now! When I `throw new Error('...')` in `node_modules/@grpc/grpc-js/build/src/index.js` and run `npm run system-test:rest`, only a handful of tests that actually require gRPC fail, most tests pass. Note:...
There are short-term and long-term plans for this. The short-term solution is to make `google-gax` webpack'able by replacing all the gRPC specifics with [grpc-fallback](https://googleapis.github.io/HowToRPC.html), which is, essentially, sending serialized protobuf...
@bcoe For using it with Node.js and service account, just pass `fallback: true` in the client constructor and it will go on the fallback route without gRPC and will use...
Hi @ddittoPersevere, thank you for asking! It's possible to use the Drive library in your web application if you prepare a separate Webpack bundle by following [these steps](https://github.com/googleapis/google-api-nodejs-client/tree/master/src/apis/drive#building-a-browser-bundle). Please let...
@omrib15 The webpack support across libraries works using the gRPC-fallback mode (enabled automatically if you're in browser, or can be enabled explicitly by passing `{ fallback: true }` to a...