2
2
Fork
You've already forked reticulum_ex
0
An implementation of the Reticulum Network Stack(https://reticulum.network) in elixir. This implementation is a work in progress and is definitely not ready for day to day use.
  • Elixir 100%
2026年04月25日 15:50:03 +02:00
examples create the RNS.IdentityStore and RNS.DestinationStore ETS tables from the RNS.Reticulum supervisor to remove unnecessary processes, separate the code into 'Client' and 'Callbacks' in lib/rns/path_request_store.ex, use the custom config in examples/echo_server.exs, add an option to wait for the RNS.Reticulum supervisor's children and use this option in the examples. 2026年01月04日 19:48:07 +01:00
lib/rns use record() typespecs instead of tuple() for records. 2026年04月25日 15:50:03 +02:00
test fix the assertions in the ratchet tests. 2026年04月24日 19:48:49 +02:00
.gitignore Add the beam.smp.core file to .gitignore. 2025年10月28日 13:45:45 +01:00
CICD.md remove mix format from the CICD pipeline because it more oft than not makes things look uglier. 2026年03月13日 17:44:01 +01:00
LICENCE.txt add the WTFPL licence and update mix.exs to allow publishing on hex.pm. 2025年12月26日 15:14:12 +01:00
mix.exs add plenty of items to the roadmap, add links to the docs and hex.pm page on the readme, add a package description to mix.exs and add ROADMAP.md to the docs(also in mix.exs). 2025年12月26日 19:52:15 +01:00
README.md add plenty of items to the roadmap, add links to the docs and hex.pm page on the readme, add a package description to mix.exs and add ROADMAP.md to the docs(also in mix.exs). 2025年12月26日 19:52:15 +01:00
ROADMAP.md update roadmap. 2026年01月06日 16:24:00 +01:00

RNS

See on hex.pm Docs on hexdocs This project is still a work in progress, and there are many things yet to do(see the roadmap).

An implementation in elixir of the Reticulum Network Service. If you want to run this, you should instead check out RNSD.

Installation

If available in Hex, the package can be installed by adding rns to your list of dependencies in mix.exs:

def deps do
 [
 {:rns, "~> 0.1.0"}
 ]
end