Skip to content
Sign up
RUNTIME · WORKERS · VAULT · APPS

The backbone your platform runs on.

Infrastructure as a platform: a deterministic Node.js runtime, thread-isolated workers, secrets resolved at runtime, and real React apps built and served in cloud — one operational signature across your whole stack.

or start from the terminal $ npm i @link-loom/sdk
billing-svc
const { Loom } = require('@link-loom/sdk');

const loom = new Loom({
  root: __dirname,
  name: 'billing-svc',
});

const main = async () => {
  // DI → infra → adapters → traffic
  const dependencies = await loom.ignite();

  dependencies.console.success('Runtime active');
};

main();
Open source

The runtime is open. The platform runs on it.

The Link Loom SDK is open source and runs the same code on your laptop, your datacenter and our cloud. No black box at the foundation of your stack.

$ npm i @link-loom/sdk View on GitHub
  • require('@link-loom/sdk') One dependency Runtime, DI, adapters, workers and streams ship in a single package.
  • BaseWorker · adapters Primitives, not magic Everything the platform does is built on documented base classes your own code can extend.
  • ignite() everywhere Cloud-optional by design Everything works offline. Cloud Vault, App Engine and managed services attach when you want them.
How it works

Ignite. Compose. Operate.

  1. loom.ignite()

    Ignite

    One call boots the runtime: dependencies resolve, infrastructure connects, adapters load — in a guaranteed order, every time.

  2. spawn → activate → stop

    Compose

    Wire services, spawn workers, attach vault and storage. Every capability arrives through the same dependency graph.

  3. build · version · serve

    Operate

    Ship apps from App Studio, version them in App Engine, watch every workload with the same observability.

By design

One runtime. Every workload.

worker lifecycle states — spawn to guillotine
7
adapters & infrastructure modules in the SDK
10+
worker memory reclaimed on termination
100%
secrets written to disk — Vault resolves at runtime
0
Your move

Put your platform on the backbone.

  1. 01 Install npm i @link-loom/sdk. Ignite your first service today.
  2. 02 Compose Add workers, vault and services as your platform grows.
  3. 03 Ship Build and version apps in cloud. Serve them anywhere.