Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fthuin/angular-video-chat-app

Angular 8 video meeting chat rooms using WebRTC
https://github.com/fthuin/angular-video-chat-app

angular chat express nodejs video webrtc

Last synced: 11 days ago
JSON representation

Angular 8 video meeting chat rooms using WebRTC

Awesome Lists containing this project

README

        

# Angular 8 video meeting WebRTC

This demonstrates how to build a WebRTC meeting application using PeerJS, Angular and Node with Express.
Users can communicate with each others (via voice and video) by simply joining the same room id by copy-pasting the URL generated
by the app.

The server address is `localhost:3000`.

### Install dependencies

```bash
npm i peerjs -g
cd server
npm i
cd ../front
npm i
```

### Start server

```bash
cd server
npm run nodemon
```

### Start PeerJS

```bash
peerjs --port 3001
```

### Start angular app
```bash
cd front
npm run build-watch
```