npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@rtcstack/ui-vue

v1.0.2

Published

Vue 3 component library for RTCstack. Provides a full `VideoConference` experience and every individual component usable standalone.

Readme

@rtcstack/ui-vue

Vue 3 component library for RTCstack. Provides a full VideoConference experience and every individual component usable standalone.

Install

npm install @rtcstack/ui-vue @rtcstack/sdk livekit-client vue

Quick start — full conference UI

<script setup lang="ts">
import { createCall } from '@rtcstack/sdk'
import { VideoConference } from '@rtcstack/ui-vue'
import '@rtcstack/ui-vue/styles.css'

const call = createCall({ url: 'wss://...', token: '...' })
await call.connect()
</script>

<template>
  <VideoConference :call="call" @leave="handleLeave" />
</template>

Components

VideoConference

Full conference view: video grid + control bar + sidebars.

<VideoConference
  :call="call"
  class="my-conference"
  :show-chat="false"
  :show-transcript="false"
  :show-participants="false"
  :control-bar-buttons="['mic', 'camera', 'leave']"
  :participant-video-props="{ showSpeakingIndicator: true, objectFit: 'contain' }"
  @leave="handleLeave"
/>

ControlBar

The row of call control buttons.

<ControlBar
  :buttons="['mic', 'camera', 'screenshare', 'devices', 'leave']"
  @leave="handleLeave"
/>

buttons values: 'mic' | 'camera' | 'screenshare' | 'reactions' | 'layout' | 'devices' | 'leave'

Default: all buttons in that order.


ParticipantVideo

Single participant tile.

<ParticipantVideo
  :participant="participant"
  :is-screen-share="false"
  :show-speaking-indicator="true"
  :show-mute-indicator="true"
  :show-quality-badge="true"
  :show-name="true"
  object-fit="cover"
  @click="handleClick"
/>

TranscriptPanel

Live transcript with speaking indicators.

<TranscriptPanel
  :max-items="100"
  :show-speaker-name="true"
  class="my-transcript"
/>

VideoGrid

Responsive grid of participant tiles.

<VideoGrid
  class="my-grid"
  :participant-video-props="{ objectFit: 'contain' }"
/>

ChatPanel

<ChatPanel class="my-chat" />

ParticipantList

<ParticipantList class="my-list" />

DeviceSelector

<DeviceSelector class="my-devices" />

Composables

All composables must be used inside a component where CALL_KEY has been provided (via provide(CALL_KEY, call) or inside VideoConference).

<script setup lang="ts">
import { provide } from 'vue'
import { CALL_KEY } from '@rtcstack/ui-vue'

provide(CALL_KEY, call)
</script>

| Composable | Returns | Description | |-----------|---------|-------------| | useCall() | Call | Access the Call instance | | useConnectionState() | Ref<ConnectionState> | Current connection state | | useParticipants() | Ref<Participant[]> | All remote participants, live | | useLocalParticipant() | Ref<Participant \| null> | Local participant, live | | useActiveSpeakers() | Ref<Participant[]> | Currently speaking participants | | useScreenShares() | Ref<Participant[]> | Participants screen sharing | | useLayout() | { layout: Ref<Layout>, setLayout } | Layout state + setter | | useIsRecording() | Ref<boolean> | Recording state | | useMessages() | Ref<Message[]> | Chat messages, live | | useTranscription() | Ref<TranscriptSegment[]> | Transcript segments, live | | useSpeakingIndicators() | Ref<Map<string, string>> | speakerId → speakerName while speaking | | useDevices() | Ref<DeviceList> | Available devices |

License

MIT