express-yaschema-ws-api-handler
TypeScript icon, indicating that this package has built-in type declarations

2.1.17 • Public • Published

express-yaschema-ws-api-handler

Downloads Size

Express support for handling WebSocket APIs declared using yaschema-ws-api.

Basic Example

// API schema and metadata
// You'll typically define this in a separate package shared by your server and clients
export const stream = makeWsApi({
  routeType: 'stream',
  url: '/stream',
  requests: {
    ping: schema.object({ echo: schema.string().allowEmptyString().optional() }).optional(),
    hello: schema.any().optional()
  },
  responses: {
    pong: schema.object({
      body: schema.string()
    }),
    hello: schema.object({
      body: schema.string()
    })
  }
});
import expressWS, { WithWebsocketMethod } from 'express-ws';



// Add WebSocket support to Express
expressWs(app);
const appWithWs = app as typeof app & WithWebsocketMethod;
registerWsApiHandler(
  appWithWs,
  api.stream,
  {},
  {
    ping: async ({ input, output }) => output.pong({ body: `PONG${(input?.echo?.length ?? 0) > 0 ? ' ' : ''}${input?.echo ?? ''}` }),
    hello: async ({ output }) => output.hello({ body: 'world' })
  }
)

The options object passed to registerWsApiHandler lets you override the validation mode and/or specify middleware.

Thanks

Thanks for checking it out. Feel free to create issues or otherwise provide feedback.

API Docs

Be sure to check out our other TypeScript OSS projects as well.

Package Sidebar

Install

npm i express-yaschema-ws-api-handler

Weekly Downloads

11

Version

2.1.17

License

MIT

Unpacked Size

164 kB

Total Files

165

Last publish

Collaborators

  • bwestphal