Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@google-cloud/compute

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@google-cloud/compute

Google Compute Engine Client Library for Node.js

  • 4.8.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created

What is @google-cloud/compute?

@google-cloud/compute is an npm package that provides a client library for interacting with Google Cloud Compute Engine. It allows developers to manage virtual machine instances, networks, firewalls, and other resources on Google Cloud Platform (GCP).

What are @google-cloud/compute's main functionalities?

Create a VM instance

This code sample demonstrates how to create a new VM instance in Google Cloud Compute Engine using the @google-cloud/compute package.

const {InstancesClient} = require('@google-cloud/compute');
const compute = new InstancesClient();

async function createInstance() {
  const [response] = await compute.insert({
    project: 'your-project-id',
    zone: 'us-central1-a',
    instanceResource: {
      name: 'instance-name',
      machineType: 'zones/us-central1-a/machineTypes/n1-standard-1',
      disks: [
        {
          boot: true,
          initializeParams: {
            sourceImage: 'projects/debian-cloud/global/images/family/debian-10'
          }
        }
      ],
      networkInterfaces: [
        {
          network: 'global/networks/default'
        }
      ]
    }
  });
  console.log('Instance created:', response);
}

createInstance().catch(console.error);

List VM instances

This code sample demonstrates how to list all VM instances in a specific zone using the @google-cloud/compute package.

const {InstancesClient} = require('@google-cloud/compute');
const compute = new InstancesClient();

async function listInstances() {
  const [instances] = await compute.list({
    project: 'your-project-id',
    zone: 'us-central1-a'
  });
  console.log('Instances:', instances);
}

listInstances().catch(console.error);

Delete a VM instance

This code sample demonstrates how to delete a VM instance in Google Cloud Compute Engine using the @google-cloud/compute package.

const {InstancesClient} = require('@google-cloud/compute');
const compute = new InstancesClient();

async function deleteInstance() {
  const [response] = await compute.delete({
    project: 'your-project-id',
    zone: 'us-central1-a',
    instance: 'instance-name'
  });
  console.log('Instance deleted:', response);
}

deleteInstance().catch(console.error);

Other packages similar to @google-cloud/compute

Keywords

FAQs

Package last updated on 14 Nov 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc