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: 8 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T20:41:59.000Z (over 2 years ago)
- Last Synced: 2025-04-10T18:03:57.927Z (3 months ago)
- Topics: angular, chat, express, nodejs, video, webrtc
- Language: TypeScript
- Homepage:
- Size: 3.09 MB
- Stars: 18
- Watchers: 2
- Forks: 12
- 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
```