bun-ws-router
Version:
A simple and efficient WebSocket router for Bun with Zod/Valibot message validation.
9 lines (6 loc) • 317 B
text/typescript
/* SPDX-FileCopyrightText: 2025-present Kriasoft */
/* SPDX-License-Identifier: MIT */
// For backward compatibility, export Zod-based implementation as default
export * from "./zod/index";
// Also export shared types that are validator-agnostic
export type { WebSocketData, UpgradeOptions } from "./shared/types";