You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added NDJSON response stream support via the new rouzer/ndjson subpath.
Define streamed responses with ndjson.$type<T>().
Register ndjson.routerPlugin with createRouter(...) and ndjson.clientPlugin with createClient(...).
Handlers can return Iterable<T> or AsyncIterable<T> values, which Rouzer serializes as application/x-ndjson.
Generated client action functions resolve to an AsyncIterable<T> parsed from the response body.
Added response plugin support for non-JSON response codecs, with fast failure when plugin-backed routes are used without the matching router/client plugin.