Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/narrowtux/Tube
- Owner: narrowtux
- License: mit
- Created: 2016-07-28T18:08:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-26T13:06:16.000Z (almost 5 years ago)
- Last Synced: 2024-10-06T01:34:43.498Z (2 months ago)
- Language: Elixir
- Size: 22.5 KB
- Stars: 12
- Watchers: 5
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Pure Elixir WebSocket client library. (HTTP)
- fucking-awesome-elixir - Tube - Pure Elixir WebSocket client library. (HTTP)
- awesome-elixir - Tube - Pure Elixir WebSocket client library. (HTTP)
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
```