Installing @briklab/slikr
Follow the common installation tutorial
This tutorial provides comprehensive instructions on how to install @briklab/slikr and other BrikLab packages.
Quick Install
Using pnpm
bash
pnpm add @briklab/slikrUsing npm
bash
npm install @briklab/slikrVerify Installation
Test that the installation was successful by creating a simple client:
ts
import slikr from "@briklab/slikr";
const client = slikr("wss://echo.websocket.org");
console.log("Slikr installed successfully!");
console.log("Status:", client.status);Next Steps
- Getting Started: Learn slikr basics
- Examples: See common use-cases and patterns
- Advanced: Custom configuration, error handling, and WebTransport features
