Get Started with Crows Nest
Getting started with Crows Nest is quick and easy. Just follow the steps below and you'll be up and running in no time.
Installation
You can install @nhtio/crows-nest directly from your preferred package manager
sh
npm i @nhtio/crows-nestsh
pnpm add @nhtio/crows-nestsh
yarn add @nhtio/crows-nestInitialize the Crows Nest
typescript
import { CrowsNest } from '@nhtio/crows-nest'
const nest = new CrowsNest()Bind an Element to your nest
typescript
const toBind = document.getElementById("toBind")
nest.bindHtmlElement(bound)