openvidu/openvidu-components-angular/projects/openvidu-angular
csantosm c0a525aac6 openvidu-components: Updated README 2022-04-11 16:03:48 +02:00
..
doc openvidu-components: Moved docs config files under library directory 2022-04-08 13:55:26 +02:00
src openvidu-components: Released media devices on videoconference destroy 2022-04-11 13:34:12 +02:00
.browserslistrc openvidu-components: Added webcomponent E2E tests 2022-03-16 12:15:22 +01:00
.prettierrc openvidu-components: Renamed library to openvidu-angular 2022-01-20 09:58:12 +01:00
README.md openvidu-components: Updated README 2022-04-11 16:03:48 +02:00
karma.conf.js openvidu-components: Renamed library to openvidu-angular 2022-01-20 09:58:12 +01:00
ng-package.json openvidu-components: Renamed library to openvidu-angular 2022-01-20 09:58:12 +01:00
package.json openvidu-components: Added webcomponent E2E tests 2022-03-16 12:15:22 +01:00
tsconfig.lib.json openvidu-components: Moved docs config files under library directory 2022-04-08 13:55:26 +02:00
tsconfig.lib.prod.json openvidu-components: Renamed library to openvidu-angular 2022-01-20 09:58:12 +01:00
tsconfig.spec.json openvidu-components: Renamed library to openvidu-angular 2022-01-20 09:58:12 +01:00

README.md

openvidu-angular

License badge Npm version Npm downloads

The easier way to build powerful OpenVidu videoconference frontend applications.

Requirements:

You will need angular-cli (and of course NPM) to serve the Angular frontend. You can check it with the following command:

npm -v
ng v

How to install

  1. You need to install the openvidu-angular library in your Angular application:
npm install openvidu-angular
  1. Also you need Angular Material:
ng add @angular/material

How to use it

You need import the openvidu-angular module in your app.module.ts:

import { OpenViduAngularConfig, OpenViduAngularModule } from 'openvidu-angular';

const config: OpenViduAngularConfig = {
    production: environment.production
};

@NgModule({
    imports: [
        ...
        OpenViduAngularModule.forRoot(config)
    ]
})