https://github.com/webrtc/test-pages
Collection of test pages used for WebRTC development
https://github.com/webrtc/test-pages
Last synced: 6 months ago
JSON representation
Collection of test pages used for WebRTC development
- Host: GitHub
- URL: https://github.com/webrtc/test-pages
- Owner: webrtc
- Archived: true
- Created: 2017-02-16T12:05:51.000Z (almost 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2023-05-16T11:59:01.000Z (over 2 years ago)
- Last Synced: 2024-12-02T15:46:37.009Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://webrtc.github.io/test-pages
- Size: 2 MB
- Stars: 92
- Watchers: 26
- Forks: 45
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
[](https://travis-ci.org/webrtc/test-pages)
# Intro #
Collection of test pages used for WebRTC development
## Development ##
Detailed information on developing in the [webrtc](https://github.com/webrtc) GitHub repo can be found in the [WebRTC GitHub repo developer's guide](https://docs.google.com/document/d/1tn1t6LW2ffzGuYTK3366w1fhTkkzsSvHsBnOHoDfRzY/edit?pli=1#heading=h.e3366rrgmkdk).
#### Clone the repo in desired folder
```bash
git clone https://github.com/webrtc/test-pages.git
```
#### Install npm dependencies (also adds linting to precommit githooks)
```bash
npm install
```
### Start web server for development
From the root of the checkout do `cd test` then run `node server.js` and finally navigate your browser to `https://localhost:8080`.
#### Linting
Runs grunt which currently only does linting.
```bash
npm test
```