.
├── README.md
├── bun.lockb
├── index.html
├── package.json
├── postcss.config.js
├── public
│ └── logo.png
├── src
│ ├── App.tsx
│ ├── assets
│ ├── context
│ │ └── webSocketContext.tsx
│ ├── hooks
│ │ ├── useConsumer.ts
│ │ ├── usePublisher.ts
│ │ └── useWebSocket.ts
│ ├── index.css
│ ├── main.tsx
│ └── vite-env.d.ts
├── tailwind.config.js
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts
6 directories, 18 files
- Extract the repo
- Navigate to the project directory:
cd test-app - Install the required packages:
bun install
- Run the project:
bun run dev