mirror of https://github.com/OpenVidu/openvidu.git
29 lines
486 B
Markdown
29 lines
486 B
Markdown
# openvidu-angular
|
|
|
|
The easier way to build powerful OpenVidu videoconference frontend applications.
|
|
|
|
## How to install
|
|
|
|
```
|
|
npm install openvidu-angular@latest
|
|
```
|
|
|
|
## Ho 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)
|
|
]
|
|
})
|
|
```
|