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
We have received many requests for interacting with vixen change event streams within nodejs environment.
What people are doing is migrating from ws to grpc.
Strategy
Expose the parsing logic of vixen through wasm lib. Clients subscribe to dragon's mouth in their code since wasm can't do I/O but once change event received can call the parse function exposed from the wasm lib to get the parsed change event. The caller is free to work in the language of their chose to be the handler for the vixen object.
var{ parse }=fs.readFileSync('vixen-parsers.wasm');// construct dragon mouth subscription in nodejs// run messages through the wasm parser// handle the vixen object
The text was updated successfully, but these errors were encountered:
Goal
We have received many requests for interacting with vixen change event streams within nodejs environment.
What people are doing is migrating from ws to grpc.
Strategy
Expose the parsing logic of vixen through wasm lib. Clients subscribe to dragon's mouth in their code since wasm can't do I/O but once change event received can call the parse function exposed from the wasm lib to get the parsed change event. The caller is free to work in the language of their chose to be the handler for the vixen object.
The text was updated successfully, but these errors were encountered: