Files
komodo/client/core/ts
Maxwell Becker 34a9f8eb9e 1.19.5 (#846)
* start 1.19.5

* deploy 1.19.5-dev-1

* avoid execute_and_poll error when update is already complete or has no id

* improve image tagging customization

* 1.19.5 release
2025-09-27 13:29:16 -07:00
..
2025-09-27 13:29:16 -07:00
2025-05-30 12:52:58 -07:00
2025-09-27 13:29:16 -07:00
2025-04-14 14:48:12 -07:00
2025-08-17 17:25:45 -07:00
2024-10-19 23:27:28 -07:00

Komodo

A system to build and deploy software across many servers. https://komo.do

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: {
    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,
});