Files
komodo/client/core/ts
Maxwell BeckerandGitHub f5a59b0333 1.16.7 (#167)
* 1.16.7

* increase builder max poll to allow User Data more time to setup periphery

* rework to KOMODO_OIDC_REDIRECT_HOST
2024-10-31 21:06:01 -07:00
..
2024-10-30 02:18:57 -04:00
2024-10-31 21:06:01 -07:00
2024-10-26 12:15:34 -07:00
2024-10-19 23:27:28 -07:00

Komodo

A system to build and deploy software across many servers

npm install komodo_client

or

yarn add komodo_client
import { KomodoClient, Types } from "komodo_client";

const komodo = KomodoClient("https://demo.komo.do", {
  type: "api-key",
  params: {
    api_key: "your_key",
    secret: "your secret",
  },
});

// Inferred as Types.StackListItem[]
const stacks = await komodo.read("ListStacks", {});

// Inferred as Types.Stack
const stack = await komodo.read("GetStack", {
  stack: stacks[0].name,
});