Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ This is a package that will provide you a "one-stop shop" for building WebRTC ap

Probably the easiest way to get started with `RTC` is to take it for a testdrive using [jsbin](http://jsbin.com/dahuka/edit?html,css,js,output). This demo uses the minified JS file (and associated sourcemaps for debugging) from:

`//cdn.jsdelivr.net/rtc/latest/rtc.min.js`
`//cdn.jsdelivr.net/npm/rtc@latest/dist/rtc.min.js`

If you wish to use a specific version, then you can replace `latest` with the version number (from `3.0.1` onwards):

`//cdn.jsdelivr.net/rtc/3.2.3/rtc.min.js`
`//cdn.jsdelivr.net/npm/[email protected]/dist/rtc.min.js`

### Package Managers FTW!

Expand All @@ -42,7 +42,7 @@ Establish a connection and render local and remote video feeds.
<div id="l-video"></div>
</div>
<div class="pure-u-4-5" id="r-video"></div>
<script src="https://cdn.jsdelivr.net/rtc/latest/rtc.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/rtc@latest/dist/rtc.min.js"></script>
</body>
</html>
```
Expand Down