mirror of https://github.com/OpenVidu/openvidu.git
![]() The library will receive tokens and it does not generate them |
||
---|---|---|
.. | ||
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
openvidu-angular is a library generated with the aim of facilitate the customization of videconference app provides by OpenVidu, providing powerful ready-to-use components.
This library is an Angular library based on Angular projections
Code scaffolding
Build
npm run lib:build
Publishing
After the library is built, tun the following command:
cd dist/ && npm publish
How to use in an Angular project
Importing library module in yout app.module.ts
@NgModule({
imports: [
BrowserModule,
OpenviduAngularModule.forRoot({
environment: environment
}),
...
]})