Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timjp87/elixir-libp2p
Elixir bindings for the go-libp2p-daemon.
https://github.com/timjp87/elixir-libp2p
elixir elixir-lang libp2p p2p p2p-network peer-to-peer
Last synced: about 2 months ago
JSON representation
Elixir bindings for the go-libp2p-daemon.
- Host: GitHub
- URL: https://github.com/timjp87/elixir-libp2p
- Owner: timjp87
- License: mit
- Created: 2019-06-01T16:41:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-03T20:05:11.000Z (over 5 years ago)
- Last Synced: 2024-10-30T16:56:21.685Z (3 months ago)
- Topics: elixir, elixir-lang, libp2p, p2p, p2p-network, peer-to-peer
- Language: Elixir
- Size: 18.6 KB
- Stars: 8
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Libp2p
[![CircleCI](https://circleci.com/gh/timjp87/elixir-libp2p.svg?style=svg)](https://circleci.com/gh/timjp87/elixir-libp2p)
OTP Application that communicates with the libp2p daemon over UNIX domain socket using Protobuf. Socket path is configured in config.exs. Libp2p API is exposed in the DHT, PubSub, ConnManager and Peer modules.
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `libp2p` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:libp2p, "~> 0.1.0"}
]
end
```Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/libp2p](https://hexdocs.pm/libp2p).