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.
9
-
10
-
See `examples` directory for usage examples.
12
+
**Elixir WebRTC** is an implementation of the [W3C WebRTC API](https://www.w3.org/TR/webrtc/) in the Elixir programming language.
11
13
12
14
## Installation
13
15
14
-
Add `ex_webrtc` to dependencies in `mix.exs`
16
+
Add `ex_webrtc` to the list of dependencies in `mix.exs`
15
17
16
18
```elixir
17
19
defdepsdo
@@ -20,3 +22,12 @@ def deps do
20
22
]
21
23
end
22
24
```
25
+
26
+
## Getting started
27
+
28
+
To get started with using Elixir WebRTC, checkout out:
29
+
* 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
30
+
* the [`apps` repo](https://github.com/elixir-webrtc/apps) with example applications built on top of Elixir WebRTC
31
+
* the [documentation](https://hexdocs.pm/ex_webrtc/readme.html), especially the [`PeerConnection` module page](https://hexdocs.pm/ex_webrtc/ExWebRTC.PeerConnection.html)
32
+
33
+
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