Skip to content

Installing @briklab/net-t

Follow the common installation tutorial

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

Quick Install

Using pnpm

bash
pnpm add @briklab/net-t

Using npm

bash
npm install @briklab/net-t

Verify Installation

Test that the installation was successful:

ts
import bint from "@briklab/net-t";

const instance = bint();
instance(42);

console.log("@briklab/net-t installed successfully!");
console.log(instance.length); // Should be 1

Next Steps