torex alternatives and similar packages
Based on the "Networking" category.
Alternatively, view torex alternatives based on common mentions on social networks and blogs.
-
Ockam
Orchestrate end-to-end encryption, cryptographic identities, mutual authentication, and authorization policies between distributed applications – at massive scale. -
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. -
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.
CodeRabbit: AI Code Reviews for Developers

* 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 torex or a related project?
Popular Comparisons
README
Torex
Very simple connector to TOR network. Basically this is HTTPoison client with proxy on Tor node.
Before running this project you need to have tor node running. To install tor node for macos run this:
brew install tor
brew services start tor
You'll have tor running on your machine where you can connect on PORT=9050
Usage
When Tor is up and running add to your app config the following
config :torex,
:tor_server,
ip: '127.0.0.1', # note charlist here, not binary
port: 9050
Make requests:
{:ok, contents} = Torex.get(url)
{:ok, result} = Torex.post(url, params)
Installation
If available in Hex, the package can be installed
by adding torex
to your list of dependencies in mix.exs
:
def deps do
[{:torex, "~> 0.1.0"}]
end
Contribution
- Fork it
- Create feature/bugfix branch
- Code/fix
- Commit and push
- Create Pull Request
Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/torex.