# WebSocket Handler

A comprehensive WebSocket handler library for Node.js with client and server support.

## Installation

```bash
npm install websocket-handler
```

## Quick Usage

### Server

```typescript
import { WebSocketServer } from 'websocket-handler';

const server = new WebSocketServer(8080);
```

### Client

```typescript
import { WebSocketClient } from 'websocket-handler';

const client = new WebSocketClient();
```

## License

MIT
