New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

openvidu-components-angular

Package Overview
Dependencies
Maintainers
0
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openvidu-components-angular

[![License badge](https://img.shields.io/badge/license-Apache2-orange.svg)](http://www.apache.org/licenses/LICENSE-2.0) [![OpenVidu Tests](https://github.com/OpenVidu/openvidu/actions/workflows/openvidu-ce-test.yml/badge.svg)](https://github.com/OpenVidu/

  • 3.0.0-dev4
  • npm
  • Socket score

Version published
Weekly downloads
155
increased by103.95%
Maintainers
0
Weekly downloads
 
Created
Source

Welcome to OpenVidu Components Angular

License badge OpenVidu Tests OpenVidu Tests Npm version Npm downloads

Introduction

Build powerful video conferencing applications with ease using OpenVidu Components Angular.

Prerequisites

Before you get started, ensure you have the following installed:

  • Node.js: This includes npm, which comes with Node.js.
  • Angular CLI: Make sure you have Angular CLI installed.

You can verify your installations by running the following commands:

npm -v
ng v

How to Install

To use OpenVidu Angular Components in your Angular application, follow these steps:

1. Install the openvidu-components-angular library
npm install openvidu-components-angular
2. Install Angular Material

Follow the Angular Material documentation for detailed instructions.

Configuration

Configure OpenVidu Components Angular by adding them to your main.ts:

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;
}

Getting Started

Ready to start using OpenVidu Components Angular? Check out our tutorials to help you get started.

API Documentation

For detailed information on OpenVidu Angular Components, refer to our API documentation

Support

If you have any questions or need assistance, please reach out to our community forum.

FAQs

Package last updated on 24 Jun 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc