Socket
Book a DemoInstallSign in
Socket

@spheron/compute

Package Overview
Dependencies
Maintainers
5
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@spheron/compute

Typescript library for deploying compute instances to Decentralised Compute via Spheron

unpublished
latest
Source
npmnpm
Version
1.0.6
Version published
Maintainers
5
Created
Source

Spheron

Compute SDK

This package provides support for working with Spheron Compute organization.

Usage

The package exports SpheronClient class, which includes methods for working with clusters, marketplace apps, cluster instances and their configurations. The constructor of SpheronClient takes in one parameter token. Check the Access Token section for information on how to create a token.

import SpheronClient from "@spheron/compute";
...
const client = new SpheronClient({ token });
await client.instance.create(
    configuration: {
      image: dockerImage,
      tag: dockerImageTag,
      ports: [{ containerPort: containerPort, exposedPort: exposedPort }],
      environmentVariables: [{ key:"key", value: "value"}],
      secretEnvironmentVariables: [{ key:"key", value: "secretValue"}],
      commands: [],
      args: [],
      region: deployRegion,
      machineImageId: computeMachineId,
    },
    healthCheckConfig: {
      path: healthCheckPath,
      port: healthCheckPort,
    },
    type: ComputeTypeEnum.DEMAND,
  }
);

For more information about the Compute methods, check out the DOCS

Access Token

To create the token that is used with the SpheronClient, follow the instructions in the DOCS. When you are creating the tokens, please choose compute type in the dashboard.

Learn More

You can learn more about Spheron and Compute SDK here:

Keywords

Compute

FAQs

Package last updated on 19 Sep 2023

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