Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elixir-webrtc/ex_turn
An Elixir implementation of TURN client (RFC 5766)
https://github.com/elixir-webrtc/ex_turn
elixir networking turn webrtc
Last synced: about 1 month ago
JSON representation
An Elixir implementation of TURN client (RFC 5766)
- Host: GitHub
- URL: https://github.com/elixir-webrtc/ex_turn
- Owner: elixir-webrtc
- Created: 2024-03-21T10:16:27.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-04-14T08:44:27.000Z (10 months ago)
- Last Synced: 2024-04-14T08:48:42.251Z (10 months ago)
- Topics: elixir, networking, turn, webrtc
- Language: Elixir
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ExTURN
[![Hex.pm](https://img.shields.io/hexpm/v/ex_turn.svg)](https://hex.pm/packages/ex_turn)
[![API Docs](https://img.shields.io/badge/api-docs-yellow.svg?style=flat)](https://hexdocs.pm/ex_turn)
[![CI](https://img.shields.io/github/actions/workflow/status/elixir-webrtc/ex_turn/ci.yml?logo=github&label=CI)](https://github.com/elixir-webrtc/ex_turn/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/elixir-webrtc/ex_turn/graph/badge.svg?token=VPsTinh1BK)](https://codecov.io/gh/elixir-webrtc/ex_turn)In-memory implementation of the TURN client.
Implements:
* [RFC 5766](https://datatracker.ietf.org/doc/html/rfc5766)## Installation
```elixir
def deps do
[
{:ex_turn, "~> 0.2.0"}
]
end
```