Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 865 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 865 Bytes

somata-websocket-client

Make Somata service calls and subscriptions from the browser using native WebSocket (which means it works with React Native). Pairs well with somata-websocket-server. Remote calls and subscriptions are returned as Kefir streams.

Installation

npm install somata-websocket-client

Usage

Create a client by providing the connection address. Use client.connected$ to wait until the connection is established.

somata = require('somata-websocket-client')
client = somata('ws://localhost:5555')

client.connected$.onValue ->
    client.remote('hello', 'sayHello').onValue (response) ->
        console.log response

    client.subscribe('announcer', 'announce').onValue (announcement) ->
        console.log announcement