Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/fthuin/angular-video-chat-app
- Owner: fthuin
- Created: 2020-08-01T17:43:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T20:41:59.000Z (almost 2 years ago)
- Last Synced: 2023-02-27T19:47:49.183Z (almost 2 years ago)
- Topics: angular, chat, express, nodejs, video, webrtc
- Language: TypeScript
- Homepage:
- Size: 3.09 MB
- Stars: 16
- Watchers: 3
- Forks: 13
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
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
```