├── .browserslistrc ├── .gitignore ├── README.md ├── angular.json ├── backend ├── app.js ├── package-lock.json └── package.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── modules │ │ ├── call │ │ │ ├── call.module.ts │ │ │ ├── components │ │ │ │ ├── call │ │ │ │ │ ├── call.component.html │ │ │ │ │ ├── call.component.scss │ │ │ │ │ └── call.component.ts │ │ │ │ └── video-player │ │ │ │ │ ├── video-player.component.html │ │ │ │ │ ├── video-player.component.scss │ │ │ │ │ └── video-player.component.ts │ │ │ ├── data │ │ │ │ └── media-icon.ts │ │ │ └── services │ │ │ │ ├── localStorage.service.ts │ │ │ │ ├── media.service.ts │ │ │ │ ├── peer.service.ts │ │ │ │ └── socket.service.ts │ │ ├── chat │ │ │ ├── chat.module.ts │ │ │ ├── components │ │ │ │ ├── chat-input │ │ │ │ │ ├── chat-input.component.html │ │ │ │ │ ├── chat-input.component.scss │ │ │ │ │ └── chat-input.component.ts │ │ │ │ └── chat │ │ │ │ │ ├── chat.component.html │ │ │ │ │ ├── chat.component.scss │ │ │ │ │ └── chat.component.ts │ │ │ └── models │ │ │ │ └── chat.model.ts │ │ ├── home │ │ │ ├── components │ │ │ │ └── home │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.scss │ │ │ │ │ └── home.component.ts │ │ │ └── home.module.ts │ │ └── not-found │ │ │ ├── components │ │ │ └── page-not-found.component.ts │ │ │ └── page-not-found.module.ts │ └── utils │ │ └── utils.ts ├── assets │ ├── .gitkeep │ └── scss │ │ └── grid.scss ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts └── styles.scss ├── tsconfig.app.json └── tsconfig.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/angular.json -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/backend/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/modules/call/call.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/call.module.ts -------------------------------------------------------------------------------- /src/app/modules/call/components/call/call.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/components/call/call.component.html -------------------------------------------------------------------------------- /src/app/modules/call/components/call/call.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/components/call/call.component.scss -------------------------------------------------------------------------------- /src/app/modules/call/components/call/call.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/components/call/call.component.ts -------------------------------------------------------------------------------- /src/app/modules/call/components/video-player/video-player.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/components/video-player/video-player.component.html -------------------------------------------------------------------------------- /src/app/modules/call/components/video-player/video-player.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/components/video-player/video-player.component.scss -------------------------------------------------------------------------------- /src/app/modules/call/components/video-player/video-player.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/components/video-player/video-player.component.ts -------------------------------------------------------------------------------- /src/app/modules/call/data/media-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/data/media-icon.ts -------------------------------------------------------------------------------- /src/app/modules/call/services/localStorage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/services/localStorage.service.ts -------------------------------------------------------------------------------- /src/app/modules/call/services/media.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/services/media.service.ts -------------------------------------------------------------------------------- /src/app/modules/call/services/peer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/services/peer.service.ts -------------------------------------------------------------------------------- /src/app/modules/call/services/socket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/call/services/socket.service.ts -------------------------------------------------------------------------------- /src/app/modules/chat/chat.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/chat/chat.module.ts -------------------------------------------------------------------------------- /src/app/modules/chat/components/chat-input/chat-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/chat/components/chat-input/chat-input.component.html -------------------------------------------------------------------------------- /src/app/modules/chat/components/chat-input/chat-input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/chat/components/chat-input/chat-input.component.scss -------------------------------------------------------------------------------- /src/app/modules/chat/components/chat-input/chat-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/chat/components/chat-input/chat-input.component.ts -------------------------------------------------------------------------------- /src/app/modules/chat/components/chat/chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/chat/components/chat/chat.component.html -------------------------------------------------------------------------------- /src/app/modules/chat/components/chat/chat.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/chat/components/chat/chat.component.scss -------------------------------------------------------------------------------- /src/app/modules/chat/components/chat/chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/chat/components/chat/chat.component.ts -------------------------------------------------------------------------------- /src/app/modules/chat/models/chat.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/chat/models/chat.model.ts -------------------------------------------------------------------------------- /src/app/modules/home/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/home/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/modules/home/components/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/home/components/home/home.component.scss -------------------------------------------------------------------------------- /src/app/modules/home/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/home/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/modules/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/home/home.module.ts -------------------------------------------------------------------------------- /src/app/modules/not-found/components/page-not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/not-found/components/page-not-found.component.ts -------------------------------------------------------------------------------- /src/app/modules/not-found/page-not-found.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/modules/not-found/page-not-found.module.ts -------------------------------------------------------------------------------- /src/app/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/app/utils/utils.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/scss/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/assets/scss/grid.scss -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/src/styles.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datnikon/stream/HEAD/tsconfig.json --------------------------------------------------------------------------------