
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@pipecat-ai/daily-transport
Advanced tools
Daily transport package for use with @pipecat-ai/client-js.
npm install \
@pipecat-ai/client-js \
@pipecat-ai/daily-transport
The DailyTransport class provides a WebRTC transport layer using Daily.co's infrastructure. It handles audio/video device management, WebRTC connections, and real-time communication between clients and bots.
import { RTVIClient } from "@pipecat-ai/client-js";
import { DailyTransport } from "@pipecat-ai/daily-transport";
const transport = new DailyTransport({
  dailyFactoryOptions: {
    // Daily.co specific configuration
  }
});
const rtviClient = new RTVIClient({
    transport,
    enableCam: false,  // Default camera off
    enableMic: true,   // Default microphone on
    callbacks: {
      // Event handlers
    },
    params: {
      baseUrl,
      endpoints
    }
    // ...
});
await rtviClient.connect();
interface DailyTransportConstructorOptions {
  dailyFactoryOptions?: DailyFactoryOptions;  // Daily.co specific configuration
}
The transport can be in one of these states:
The transport implements the various RTVI event handlers. Check out the docs or samples for more info.
The transport includes error handling for:
BSD-2 Clause
FAQs
Pipecat Daily Transport Package
The npm package @pipecat-ai/daily-transport receives a total of 10,210 weekly downloads. As such, @pipecat-ai/daily-transport popularity was classified as popular.
We found that @pipecat-ai/daily-transport demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.