Files
Maxwell Becker 7c95823eb0 2.1.1 (#1314)
* start 2.1.1 to fix swarm auto updates

* correctly extract image and digest from swarm stacks / deployments

* 2.1.1 fix swarm auto updates not picking up

* fmt
2026-04-02 14:55:44 -07:00
..
2026-04-01 16:08:29 -07:00
2026-03-24 05:50:10 -07:00
2026-04-02 14:55:44 -07:00
2025-04-14 14:48:12 -07:00
2025-08-17 17:25:45 -07:00
2026-04-01 16:08:29 -07:00
2026-04-01 16:08:29 -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,
});