Yummy is designed to communicate over WebSocket. Almost all modern programming languages has a Websocket support so it should not be a problem to connect. Also, all modern browsers has a Websocket support and that makes Yummy to accesible from browsers.
if("WebSocket"inwindow){alert("WebSocket is supported by your Browser!");// Let us open a web socketvarws=newWebSocket("ws://127.0.0.1:9090/v1/socket?x-yummy-api=YummyYummy");ws.onopen=function(){ws.send(JSON.stringify({"type":"Auth","auth_type":"Email","email":"test@test.com","password":"test","create":true}));};ws.onmessage=function(evt){alert(evt.data);};ws.onclose=function(){alert("Connection is closed...");};}else{alert("WebSocket NOT supported by your Browser!");}