Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/narrowtux/Tube

WebSocket client library written in pure Elixir
https://github.com/narrowtux/Tube

Last synced: about 1 month ago
JSON representation

WebSocket client library written in pure Elixir

Awesome Lists containing this project

README

        

# Tube

Pure-Elixir WebSocket client

* Runs on a supervisable GenServer
* Tested with autobahn

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:

1. Add `tube` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:tube, "~> 0.1.0"}]
end
```

2. Ensure `tube` is started before your application:

```elixir
def application do
[applications: [:tube]]
end
```