Tube
Pure-Elixir WebSocket client
- Runs on a supervisable GenServer
- Tested with autobahn
Installation
If available in Hex, the package can be installed as:
-
Add
tubeto your list of dependencies inmix.exs:
```elixir
def deps do
[{:tube, "~> 0.1.0"}]
end
```-
Ensure
tubeis started before your application:
```elixir
def application do
[applications: [:tube]]
end
```