Skip to content

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/slikr

Using npm

bash
npm install @briklab/slikr

Verify 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