Zeebe on JS Client Side

Hi Guys,

Is it possible to run a Zeebe client on a JS cliente app ?

I Tried to use the zeebe-node in a Vue3 app, but it does not work.

The zeebe-node just worked on a NodeJs server side app.

There any zeebe client that works on a Client Js APP ?

Thanks!

Hi @MrBorges - the web browser cannot make a gRPC connection, so you need a server-side component to do it. You can use either a Node application using the zeebe-node client and communication with your front-end via REST or WebSockets, or else using grpc-web, which needs a proxy.

Josh

1 Like

Here is working example:


Rest+websocket node.js server

Websocket client sending start process and publish message from browser web part and consuming data from external task throght websocket connection.
2 Likes