Skip to content
PackagesFoundationDocs 1.3.x

@connectum/core

Server foundation for registration, lifecycle, transport, configuration, TLS, and typed service calls.

Install

bash
npm install @connectum/core
bash
pnpm add @connectum/core
bash
bun add @connectum/core

Start Here

typescript
import { createServer } from '@connectum/core';

const server = createServer({
  services: [greeterService],
  port: 5000,
  shutdown: { autoShutdown: true },
});

await server.start();

For a complete, source-verified workflow, continue with the focused guide below.

Key Entry Points

Entry pointUse it to
createServerCompose services, protocols, interceptors, and shutdown policy.
defineServiceBind a generated service descriptor to typed handlers.
createCatalogClientCall catalog services outside a server handler.

Runtime boundaries and extension seams remain in Connectum Runtime Architecture.

Learn / Configure / API Reference

Compare all Connectum packages by capability.