Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ A **zero-dependency** TypeScript SDK for the [ThruBox Server](https://github.com
### Install

```bash
npm install @aossie/thrubox-client
npm install @aossie-org/thrubox-client
```

### Quick Start

```typescript
import { RelayClient } from '@aossie/thrubox-client';
import { RelayClient } from '@aossie-org/thrubox-client';

const relay = new RelayClient('https://relay.example.com');

Expand Down Expand Up @@ -159,7 +159,7 @@ Check server health.
## ⚠️ Error Handling

```typescript
import { RelayRateLimitError, RelayPayloadTooLargeError } from '@aossie/thrubox-client';
import { RelayRateLimitError, RelayPayloadTooLargeError } from '@aossie-org/thrubox-client';

try {
await relay.send({ to, from, payload });
Expand Down