[Vuejs]-Module @google-cloud/speech not supported for Vue JS?

0👍

Currently the Google Cloud API client libraries such as the one you are using cannot be used from the browser. As you noted, those libraries use gRPC, which in turn uses http2. The problem is that currently no major browser allows JavaScript libraries to use the full functionality of the HTTP/2 protocol, so there is currently no complete browser shim for the Node http2 module.

The http2 module you got from npm is a different library with a different API. It most likely also does not work in the browser for the same reason.

Leave a comment