
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-video-call
Advanced tools
ReactVideoCall is a simple yet powerful WebRTC-based video call component for React. It uses Firebase for signaling and supports both desktop and mobile views with minimal setup.
ReactVideoCall is a simple yet powerful WebRTC-based video call component for React. It uses Firebase for signaling and supports both desktop and mobile views with minimal setup.
Install via npm:
npm install react-video-call
| Prop | Type | Description |
|---|---|---|
roomName | string | Common room name used by both users to connect. |
firebaseConfig | FirebaseOptions | Firebase configuration object for signaling. Use secure Firebase Auth and Firestore Rules. |
RTCConfiguration | RTCConfiguration | WebRTC configuration including iceServers. You can use your own TURN servers or services like Xirsys. |
"use client";
import React, { useState } from "react";
import firebaseConfig from "./../../firebasecrads.json";
import { ReactVideoCall } from 'react-video-call';
export default function Home() {
const [roomName, setRoomName] = useState("");
const configuration = {
iceServers: [
{ urls: 'stun:stun1.l.google.com:19302' },
{ urls: 'stun:stun2.l.google.com:19302' },
{ urls: 'stun:stun3.l.google.com:19302' },
{ urls: 'stun:stun4.l.google.com:19302' },
]
};
return (
<div className="flex flex-col items-center h-full font-[family-name:var(--font-geist-sans)]">
<div className="w-full p-1">
<input
type="text"
value={roomName}
onChange={(e) => setRoomName(e.target.value)}
placeholder="Enter the same room name for both users"
className="w-full px-4 py-2 bg-gray-800 text-white border border-gray-600 rounded-lg shadow-sm focus:outline-none focus:ring-2 focus:ring-gray-400"
/>
</div>
<div className="flex-1 w-full p-4">
<ReactVideoCall
roomName={roomName}
firebaseConfig={firebaseConfig}
RTCConfiguration={configuration}
/>
</div>
</div>
);
}
For production use, apply proper Firebase Authentication and Firestore Rules to restrict access and ensure user privacy.
ISC
FAQs
ReactVideoCall is a simple yet powerful WebRTC-based video call component for React. It uses Firebase for signaling and supports both desktop and mobile views with minimal setup.
The npm package react-video-call receives a total of 13 weekly downloads. As such, react-video-call popularity was classified as not popular.
We found that react-video-call 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.