Install and set up the HAIP TypeScript SDK
# Install from npm npm install @haip/sdk
import { createHAIPClient, HAIPConnectionConfig } from "haip-sdk"; const config: HAIPConnectionConfig = { url: "ws://localhost:8080", token: "your-jwt-token", }; const client = createHAIPClient(config);
# Install with bundler npm install @haip/sdk
import { createHAIPClient } from "haip-sdk";
Was this page helpful?