Guide
Resolver API
When integrating WebSockets with larger projects, it is often needed to dynamically route an incoming event to websocket hooks. CrossWS provides a very simple mechanism to do this using resolver API.
Resovler supports async results. This allows implementing lazy loading.
// https://crossws.unjs.io/adapters
import wsAdapter from "crossws/adapters/<adapter>";
import { defineHooks } from "crossws";
const websocket = wsAdapter({
async resolve(req) {
// TODO: Resolve hooks based on req.url, req.headers
// You can return undefined in case there is no match
return {
/* resolved hooks */
};
},
});