Files
komodo/client/core/ts
2025-02-26 14:55:58 -08:00
..
2025-02-26 14:55:58 -08:00
2025-02-26 14:55:58 -08: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,
});