Hedystia 2.3: Universal WebSocket, Native Node.js, PostgreSQL, and 20+ New Validations

Hedystia 2.3: Universal WebSocket, Native Node.js, PostgreSQL, and 20+ New Validations

Native Node.js Support The HTTP layer now runs natively on Node.js — no adapter required. listen(port) works the same on Bun and Node. Before: import { adapter } from "@hedystia/adapter"; import { createServer } from "node:http"; const app = new Framework().get("/", () => "ok"); createServer(adapter(app).toNodeHandler()).listen(3000); After: import Framework from "hedystia"; new Framework().get("/", () => "ok").listen(3000); @hedystia/ws — Universal WebSocket...

📰 Original Source

Read full article at Dev →

KhanList aggregates and links to publicly available news content. We do not host full articles from third-party sources. Always verify important information with original sources.