Popularity
3.1
Declining
Activity
0.0
Stable
12
4
3
Monthly Downloads: 0
Programming language: Elixir
License: BSD 3-clause "New" or "Revised" License
Tags:
Networking
eio alternatives and similar packages
Based on the "Networking" category.
Alternatively, view eio alternatives based on common mentions on social networks and blogs.
-
ejabberd
Robust, Ubiquitous and Massively Scalable Messaging Platform (XMPP, MQTT, SIP Server) -
Ockam
End-to-end encryption and mutual authentication for distributed applications. -
sshkit
An Elixir toolkit for performing tasks on one or more servers, built on top of Erlang’s SSH application. -
wifi
Various utility functions for working with the local Wifi network in Elixir. These functions are mostly useful in scripts that could benefit from knowing the current location of the computer or the Wifi surroundings. -
chatter
Chatter library for Elixir, provides a secure broadcast between nodes.
Bot detection and prevention for Elixir/Phoenix applications
Paraxial.io is bot detection and prevention for Elixir/Phoenix applications. Dealing with scrapers, card cracking, or credential stuffing? We take care of that.
Promo
paraxial.io
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of eio or a related project?
Popular Comparisons
README
Eio
engine.io server for Elixir.
Usage
use Eio as standalone server
defmodule MyApp.Eio do
use Eio.Router
def connect(session) do
session |> EIO.Session.send("connect success")
end
def message(session, _msg) do
session |> EIO.Session.send("message received")
session |> EIO.Session.close
...
end
def close(_session) do
...
end
end
Plug.Adapters.Cowboy.http MyApp.Eio, []
TODO
- [X] polling transport
- [X] websocket transport
- [ ] exception
- [ ] version support
- [ ] base64 support
- [ ] jsonp support
- [ ] binary data support