openvidu/openvidu-components-angular/projects/openvidu-angular
csantosm 493f1e3ba0 openvidu-components: Released media devices on videoconference destroy 2022-04-11 13:34:12 +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-08 14:01:47 +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.

How to install

npm install openvidu-angular@latest

How to use it

In your app.module.ts:

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

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

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