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

@iwy/live-widgets

v1.11.0

Published

Embeddable AI avatar and audio visualizer widgets for live conversations

Downloads

110

Readme

@iwy/live-widgets

Embeddable AI avatar and audio visualizer widgets for live conversations. This package allows you to easily embed interactive AI avatars and audio visualizations on any website with just a few lines of code.

Components

This package provides seven interactive components for Pipecat voice AI applications:

| Component | Description | Use Case | |-----------|-------------|----------| | live-avatar | Circular floating bubble in bottom-right corner | Non-intrusive avatar widget similar to chat bubbles | | live-avatar-rectangular | Rectangular video container that fills parent div | Embedded video chat experience in your page layout | | audio-visualizer | Audio-only WebGL plasma visualizer | Audio-first experiences without video streaming | | headless | Framework-agnostic SDK for custom UI development | Build your own UI with full control over styling and behavior | | iwy-corner-circular | Circular floating bubble with video streaming | Non-intrusive floating avatar with expandable controls | | webrtc-live-avatar-http | Pure WebRTC widget with HTTP signaling | Simplified signaling without WebSocket dependency | | webrtc-live-avatar-rectangular | Pure WebRTC widget with WebSocket signaling | Direct peer-to-peer connection without Pipecat/Daily.co |

Click any component name above to view detailed documentation, usage examples, and configuration options.

Quick Start

All components follow the same simple pattern: import the component and specify your agentid (required), along with any optional component-specific parameters.

Installation

Via npm

npm install @iwy/live-widgets

Via CDN

<!-- Example: Load the live-avatar component -->
<script src="https://unpkg.com/@iwy/live-widgets@latest/dist/live-avatar.min.js"></script>

Basic Usage Example

<!DOCTYPE html>
<html>
<head>
    <title>My Website</title>
</head>
<body>
    <h1>Welcome</h1>

    <!-- Use the component with required agentid attribute -->
    <live-avatar agentid="your-agent-id"></live-avatar>

    <!-- Load the component script -->
    <script src="https://unpkg.com/@iwy/live-widgets@latest/dist/live-avatar.min.js"></script>
</body>
</html>

React/TypeScript

import '@iwy/live-widgets';

function App() {
  return (
    <div>
      <live-avatar agentid="your-agent-id">
      </live-avatar>
    </div>
  );
}

Note: Each component may have additional optional attributes specific to its functionality. See the individual component documentation linked in the table above for complete configuration options.

Features

  • Multiple Component Types - Floating bubble, rectangular container, audio visualizer, headless SDK, and pure WebRTC widgets
  • Pipecat Integration - Built-in support for Pipecat Client SDK with Daily transport
  • Easy Integration - Web components work with any framework (React, Vue, Angular, etc.)
  • Responsive Design - Components adapt to their containers
  • Real-time Audio - Microphone visualization and audio reactivity
  • WebGL Effects - Hardware-accelerated plasma visualization
  • Multi-language - Built-in English and Norwegian support
  • Customizable - Configure endpoints, styling, and behavior

Browser Support

| Browser | Support | |---------|---------| | Chrome/Edge | ✅ Full support (60+) | | Firefox | ✅ Full support (63+) | | Safari | ✅ Full support (12+, iOS 11+) |

Requirements:

  • WebRTC
  • Web Audio API
  • WebGL 1.0+ (for audio-visualizer)

Documentation

For detailed documentation on each component, see:

Development

# Clone repository
git clone https://github.com/iwy-ai/live-widgets.git
cd live-widgets

# Install dependencies
npm install

# Build all components
npm run build

License

MIT License - see LICENSE file for details.

Links

Support

For support and questions, visit iwy.ai/contact

Credits

Built by iwy.ai with: