Popularity
3.3
Stable
Activity
0.0
Stable
12
5
4

Monthly Downloads: 4
Programming language: Elixir
License: MIT License
Tags: HTTP    

Tube alternatives and similar packages

Based on the "HTTP" category.
Alternatively, view Tube alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Tube or a related project?

Add another 'HTTP' Package

README

Tube

Pure-Elixir WebSocket client

  • Runs on a supervisable GenServer
  • Tested with autobahn

Installation

If available in Hex, the package can be installed as:

  1. Add tube to your list of dependencies in mix.exs:
    def deps do
      [{:tube, "~> 0.1.0"}]
    end
  1. Ensure tube is started before your application:
    def application do
      [applications: [:tube]]
    end