You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implementation of the [W3C WebRTC API](https://www.w3.org/TR/webrtc/) in Elixir.
10
+
---
11
+
12
+
</div>
9
13
10
-
See `examples` directory for usage examples.
14
+
**Elixir WebRTC** is an implementation of the [W3C WebRTC API](https://www.w3.org/TR/webrtc/) in the Elixir programming language.
11
15
12
16
## Installation
13
17
14
-
Add `ex_webrtc` to dependencies in `mix.exs`
18
+
Add `ex_webrtc` to the list of dependencies in `mix.exs`
15
19
16
20
```elixir
17
21
defdepsdo
@@ -20,3 +24,12 @@ def deps do
20
24
]
21
25
end
22
26
```
27
+
28
+
## Getting started
29
+
30
+
To get started with using Elixir WebRTC, checkout out:
31
+
* the [examples directory](https://github.com/elixir-webrtc/ex_webrtc/tree/master/examples) which contains a bunch of very simple usage examples of the library
32
+
* the [`apps` repo](https://github.com/elixir-webrtc/apps) with example applications built on top of Elixir WebRTC
33
+
* the [documentation](https://hexdocs.pm/ex_webrtc/readme.html), especially the [`PeerConnection` module page](https://hexdocs.pm/ex_webrtc/ExWebRTC.PeerConnection.html)
34
+
35
+
If you have any questions, ideas or topics to discuss about Elixir WebRTC, head to the [discussions page](https://github.com/orgs/elixir-webrtc/discussions).
0 commit comments