mirror of https://github.com/OpenVidu/openvidu.git
32 lines
870 B
Markdown
32 lines
870 B
Markdown
# openvidu-angular
|
|
|
|
[](http://www.apache.org/licenses/LICENSE-2.0)
|
|
[](https://npmjs.org/package/openvidu-angular)
|
|
[](https://npmjs.org/package/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`:
|
|
|
|
```typescript
|
|
import { OpenViduAngularConfig, OpenViduAngularModule } from 'openvidu-angular';
|
|
|
|
const config: OpenViduAngularConfig = {
|
|
production: environment.production
|
|
};
|
|
|
|
@NgModule({
|
|
imports: [
|
|
...
|
|
OpenViduAngularModule.forRoot(config)
|
|
]
|
|
})
|
|
``` |