Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
openvidu-components-angular
Advanced tools
Build powerful video conferencing applications with ease using OpenVidu Components Angular.
Build powerful video conferencing applications with ease using OpenVidu Components Angular.
Angular Components are the simplest way to create real-time videoconferencing apps with Angular. There's no need to manage state or low-level events; Angular Components from OpenVidu handle all the complexity for you.
To get started with OpenVidu Components Angular, visit our Getting Started guide.
Create an Angular Project (>= 17.0.0)
ng new your-project-name
Add Angular Material to your project
ng add @angular/material
Install OpenVidu Components Angular
npm install openvidu-components-angular
Import and use OpenVidu Components Angular
import { OpenViduComponentsModule, OpenViduComponentsConfig } from 'openvidu-components-angular';
// Other imports ...
const config: OpenViduComponentsConfig = {
production: environment.production
};
bootstrapApplication(AppComponent, {
providers: [
importProvidersFrom(
OpenViduComponentsModule.forRoot(config)
// Other imports ...
),
provideAnimations()
]
}).catch((err) => console.error(err));
You can also customize the styles in your styles.scss
file:
:root {
--ov-primary-color: #303030;
--ov-secondary-color: #3e3f3f;
--ov-tertiary-color: #598eff;
--ov-warn-color: #eb5144;
--ov-accent-color: #ffae35;
--ov-light-color: #e6e6e6;
--ov-logo-background-color: #3a3d3d;
--ov-text-color: #ffffff;
--ov-panel-text-color: #1d1d1d;
--ov-panel-background: #ffffff;
--ov-buttons-radius: 50%;
--ov-leave-button-radius: 10px;
--ov-video-radius: 5px;
--ov-panel-radius: 5px;
}
<ov-videoconference
[token]="token"
[livekitUrl]="LIVEKIT_URL"
(onTokenRequested)="onTokenRequested($event)"
>
</ov-videoconference>
For detailed information on OpenVidu Angular Components, refer to our API Reference.
If you have any questions or need assistance, please reach out to our Support page.
FAQs
Build powerful video conferencing applications with ease using OpenVidu Components Angular.
The npm package openvidu-components-angular receives a total of 104 weekly downloads. As such, openvidu-components-angular popularity was classified as not popular.
We found that openvidu-components-angular demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.