Popularity
3.2
Growing
Activity
0.0
Stable
12
4
4
Monthly Downloads: 0
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.
-
PlugAttack
A plug building toolkit for blocking and throttling abusive requests -
spell
Spell is a Web Application Messaging Protocol (WAMP) client implementation in Elixir. WAMP is an open standard WebSocket subprotocol that provides two application messaging patterns in one unified protocol: Remote Procedure Calls + Publish & Subscribe: http://wamp.ws/ -
web_socket
An exploration into a stand-alone library for Plug applications to easily adopt WebSockets. -
http_proxy
http proxy with Elixir. wait request with multi port and forward to each URIs -
explode
An easy utility for responding with standard HTTP/JSON error payloads in Plug- and Phoenix-based applications -
Mechanize
Build web scrapers and automate interaction with websites in Elixir with ease! -
ivar
Ivar is an adapter based HTTP client that provides the ability to build composable HTTP requests. -
fuzzyurl
An Elixir library for non-strict parsing, manipulation, and wildcard matching of URLs. -
SpiderMan
SpiderMan,a base-on Broadway fast high-level web crawling & scraping framework for Elixir. -
http_digex
HTTP Digest Auth Library to create auth header to be used with HTTP Digest Authentication -
Ralitobu.Plug
Elixir Plug for Ralitobu, the Rate Limiter with Token Bucket algorithm
TestGPT | Generating meaningful tests for busy devs
Get non-trivial tests (and trivial, too!) suggested right inside your IDE, so you can code smart, create more value, and stay confident when you push.
Promo
codium.ai
Do you think we are missing an alternative of Tube or a related project?
Popular Comparisons
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:
- Add
tube
to your list of dependencies inmix.exs
:
def deps do
[{:tube, "~> 0.1.0"}]
end
- Ensure
tube
is started before your application:
def application do
[applications: [:tube]]
end