New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

googleapis-nodejs-functions

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

googleapis-nodejs-functions

Google Cloud Functions Client Library for Node.js (unofficial)

0.0.4
Source
npm
Version published
Weekly downloads
6
-86.05%
Maintainers
1
Weekly downloads
 
Created
Source

Google Cloud Functions Node.js Library

Table of contents:

  • Quickstart
  • Samples
  • Versioning
  • Contributing
  • License

Quickstart

Before you begin

Installing the client library

npm install --save googleapis-nodejs-functions

Using the client library


// Imports the Google Cloud client library
const { GCF } = require('googleapis-nodejs-functions');

// Your Google Cloud Platform project ID
const projectId = 'YOUR_PROJECT_ID';

// Creates a client
const gcf = new GCF({
  keyFilename: './credentials.json',
  projectId
});

// Get Functions and metadata
gcf
  .getCloudFunctions()
  .then(data => {
    const fns = data[0];
    //console.log('FUNCTIONS: ', fns);
    const fn = fns[0];
    console.log(fn.metadata);
  })
  .catch(err => {
    console.error('ERROR:', err);
  });

Samples

Versioning

Contributing

License

Apache Version 2.0

See LICENSE

Keywords

google apis client

FAQs

Package last updated on 19 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts