google-client-api

Get the Google Client API object asynchronously to use Google API's

Usage no npm install needed!

<script type="module">
  import googleClientApi from 'https://cdn.skypack.dev/google-client-api';
</script>

README

google-client-api

module.exports(onComplete) ⏏

This module is a function which will return a Google Client API object assynchronously.

This function returns a promise. (if you're into promises) Which will return the gapi Object.

If you're not into promises then you can simply call this function and pass in a callback object.

Params

  • onComplete function - an optional callback which will return the Google Client API Object.

Returns: Promise - This function also returns a promise if you're into promises which will return the Google Client API Object.

Example

Using with Promise:

require( 'google-client-api' )().then( function( gapi ) {
    // Do something with the gapi object
});

Using with callback:

require( 'google-client-api' )( function( gapi ) {
    // Do something with the gapi object
});