I've previously been using Axios for a project, but I am looking to port it over to faye-websocket-ruby. The code I am looking to port doesn't seem to have an apparent equivalent that I can find for this project:
Here is an example
mysocket = io(CONNECT_STR, { path: "/xyz", transport: ['websocket'], query: {itemOne: 1, itemTwo: 2} });
Specifically, I am struggling with the path and query options; is there an equivalent to faye-websocket-ruby?