mirror of https://github.com/OpenVidu/openvidu.git
![]() |
||
---|---|---|
.. | ||
doc | ||
src | ||
.browserslistrc | ||
.prettierrc | ||
README.md | ||
karma.conf.js | ||
ng-package.json | ||
package.json | ||
tsconfig.lib.json | ||
tsconfig.lib.prod.json | ||
tsconfig.spec.json |
README.md
openvidu-angular
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)
]
})