Skip to content

Installing @briklab/lib

Follow the common installation tutorial

This tutorial provides comprehensive instructions on how to install @briklab/lib and other BrikLab packages.

Quick Install

Using pnpm

bash
pnpm add @briklab/lib

Using npm

bash
npm install @briklab/lib

Verify Installation

Test that the installation was successful by importing a module:

ts
import JSTC from "@briklab/lib/jstc";

// If no errors, installation is successful
console.log("@briklab/lib installed successfully!");

Next Steps