Popularity
3.2
Growing
Activity
0.0
Stable
14
4
3
Monthly Downloads: 17
Programming language: Elixir
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.
-
Firezone
Open-source VPN server and egress firewall for Linux built on WireGuard. Firezone is easy to set up (all dependencies are bundled thanks to Chef Omnibus), secure, performant, and self hostable. -
Ockam
Orchestrate end-to-end encryption, cryptographic identities, mutual authentication, and authorization policies between distributed applications – at massive scale. -
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.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
* 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