
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@dytesdk/angular-ui-kit
Advanced tools
A set of UI components to truly customize your meeting UI, in Angular
Explore the docs »
Report Bug
·
Request Feature
There are separate UI Kit packages for VanillaJS and React. Check out the links to the packages below
First, you will need to install the ui-kit along with the web-core package:
npm i @dytesdk/angular-ui-kit @dytesdk/web-core
The web-core
package is the package which handles all the low level logic required for a meeting by interating with our servers. Use it to create a meeting object, which you can pass along to the UI Kit components.
Load the component in your template file (component.html):
<dyte-meeting #myid></dyte-meeting>
Then initialize and pass the meeting object to the component:
class AppComponent {
title = 'MyProject';
@ViewChild('myid') meetingComponent: DyteMeeting;
dyteMeeting: DyteClient;
async ngAfterViewInit() {
const meeting = await DyteClient.init({
roomName: '<room-name>',
authToken: '<auth-token>',
defaults: {
video: true,
audio: true,
},
});
meeting.joinRoom();
this.dyteMeeting = meeting;
if (this.meetingComponent) this.meetingComponent.meeting = meeting;
}
}
angular-ui-kit
is created & maintained by Dyte, Inc. You can find us on Twitter - @dyte_io or write to us at dev [at] dyte.io
.
The names and logos for Dyte are trademarks of Dyte, Inc.
We love open source software! See our other projects and our products.
FAQs
Dyte's UI Kit to support easy UI development for Angular Projects
The npm package @dytesdk/angular-ui-kit receives a total of 78 weekly downloads. As such, @dytesdk/angular-ui-kit popularity was classified as not popular.
We found that @dytesdk/angular-ui-kit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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 how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.