Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 17, 2024 via pnpm

googleapis 54.1.0

Google APIs Client Library for Node.js
Package summary
Share
2
issues
1
high severity
license
1
1
low severity
license
1
7
licenses
35
MIT
7
Apache-2.0
2
BSD-3-Clause
5
other licenses
ISC
2
(BSD-3-Clause OR GPL-2.0)
1
BSD
1
BSD-2-Clause
1
Package created
18 Sep 2012
Version published
15 Jul 2020
Maintainers
2
Total deps
49
Direct deps
2
License
Apache-2.0

Issues

2

1 high severity issue

high
Recommendation: Validate that the package complies with your license policy
via: googleapis-common@4.4.3
Collapse
Expand

1 low severity issue

low
Recommendation: Read and validate the license terms
via: googleapis-common@4.4.3
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
35 Packages, Including:
abort-controller@3.0.0
agent-base@6.0.2
arrify@2.0.1
base64-js@1.5.1
bignumber.js@9.1.2
call-bind@1.0.7
debug@4.3.4
define-data-property@1.1.4
es-define-property@1.0.0
es-errors@1.3.0
event-target-shim@5.0.1
extend@3.0.2
function-bind@1.1.2
get-intrinsic@1.2.4
google-p12-pem@3.1.4
gopd@1.0.1
gtoken@5.3.2
has-property-descriptors@1.0.2
has-proto@1.0.3
has-symbols@1.0.3
hasown@2.0.2
https-proxy-agent@5.0.1
is-stream@2.0.1
json-bigint@1.0.0
jwa@2.0.0
jws@4.0.0
ms@2.1.2
node-fetch@2.7.0
object-inspect@1.13.1
safe-buffer@5.2.1
set-function-length@1.2.2
side-channel@1.0.6
tr46@0.0.3
uuid@8.3.2
whatwg-url@5.0.0

Apache License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
7 Packages, Including:
ecdsa-sig-formatter@1.0.11
fast-text-encoding@1.0.6
gaxios@4.3.3
gcp-metadata@4.3.1
google-auth-library@6.1.6
googleapis-common@4.4.3
googleapis@54.1.0

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
buffer-equal-constant-time@1.0.1
qs@6.12.1

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
lru-cache@6.0.0
yallist@4.0.0

(BSD-3-Clause OR GPL-2.0)

Permissive
1 Packages, Including:
node-forge@1.3.1

BSD

Invalid
Not OSI Approved
1 Packages, Including:
url-template@2.0.8

BSD 2-Clause "Simplified" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
webidl-conversions@3.0.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

2
All Dependencies CSV
β“˜ This is a list of googleapis 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
google-auth-library6.1.654.19 kBApache-2.0
prod
googleapis-common4.4.322.18 kBApache-2.0
prod
1
1

Visualizations

Frequently Asked Questions

What does googleapis do?

Google APIs Client Library, widely known as "googleapis", is a Node.js-based client library that connects to a wide variety of Google's APIs. The library is well equipped to handle authorization and authentication through OAuth 2.0, API Keys, and JWT tokens. By using this package, developers can access a massive list of Google APIs programmatically, unlocking a wealth of options to integrate Google's features into their own applications.

How do you use googleapis?

Usage of the "googleapis" requires you to install the package using npm (Node.js Package Manager) in your project's root directory. Once installed, you simply require the library, specify the version of the API you intend to use and, depending on the API, provide the appropriate authentication parameters.

Here is an example of how to utilize the "googleapis" library to create a Blogger client and retrieve the details of a blog based on its id:

const {google} = require('googleapis');

// Instantiate the Blogger API
const blogger = google.blogger({
  version: 'v3',
  auth: 'YOUR API KEY' // replace with your API key
});

const params = {
  blogId: '3213900' // replace with the id of the blog you want details for
};

// Retrieve blog details
blogger.blogs.get(params, (err, res) => {
  if (err) {
    console.error(err);
    throw err;
  }
  console.log(`The blog url is ${res.data.url}`);
});

The library also supports promises and async/await syntax for handling asynchronous operations.

Where are the googleapis docs?

The extensive documentation for Google APIs Client Library is available on the Google Developers portal, and the online API Reference Documentation is found at https://googleapis.dev/nodejs/googleapis/latest. This autogen-generated documentation may change in location periodically, but always remains accessible through the aforementioned link. For interactive exploring and testing of available APIs, Google's API Explorer is a valuable resource. Additional coding samples and tutorials can be found in the 'samples' directory of the Github repository.