Sha256: 1d8e698c439490b63631b2f558f684fd28f9dc2e5e6d1d556a12e196daa7dc0c
Contents?: true
Size: 1004 Bytes
Versions: 2
Compression:
Stored size: 1004 Bytes
Contents
# isomorfeus-transport Transport and PubSub for Isomorfeus. ### Community and Support At the [Isomorfeus Framework Project](http://isomorfeus.com) ## Installation isomorfeus-transport is usually installed with the installer. Otherwise add to your Gemfile: ```ruby gem 'isomorfeus-transport' ``` and bundle install/update ## Server Side Rendering `yarn add ws` The 'ws' module then needs to be imported in application_ssr.js: ``` import WebSocket from 'ws'; global.WebSocket = WebSocket; ``` ## Configuration options Client and Server: - Isomorfeus.api_websocket_path - path for server side endpoint, default: `/isomorfeus/api/websocket` Server only: - Isomorfeus.middlewares - all the rack middlewares to load ## Usage - [Authentication and Current User](https://github.com/isomorfeus/isomorfeus-project/blob/master/ruby/isomorfeus-transport/docs/authentication.md) - [Channels (PubSub)](https://github.com/isomorfeus/isomorfeus-project/blob/master/ruby/isomorfeus-transport/docs/channels.md)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
isomorfeus-transport-1.0.0.zeta25 | README.md |
isomorfeus-transport-1.0.0.zeta24 | README.md |