react-native-peerjs icon indicating copy to clipboard operation
react-native-peerjs copied to clipboard

PeerJS for React Native

Results 24 react-native-peerjs issues
Sort by recently updated
recently updated
newest added

is this lib still working correct ? im using it . every thing is ok . just call.on("stream is not fireing at all . my code is simple like docs...

I'm trying to close connection but it's work. this is my code `const endCall = () => { console.log('endCall'); if (socket === undefined || peer === undefined) return; socket.disconnect(); console.log(peer,...

Trying to use this on iOS it won't connect. Any ideas?

**[email protected]** working well with **[email protected]** generating problem with [email protected] and **[email protected]** getting errors like - Error: Failed to initialize PeerConnection, check the native logs! - ERROR PeerJS: Your browser does't...

I am using it for making the audio call in react native android. It is working fine but there is one issue sometimes I am facing. The audio call is...

I'm using Expo@46 to create a simple video calling app, I have installed `react-native-webrtc` and set it up according to [this Expo guide](https://github.com/expo/config-plugins/tree/main/packages/react-native-webrtc), and I'm trying to use react-native-peerjs alongside...

I am making a group video call app and I have been stuck here for a long time. See like I have this small function: ``` const connectToNewUser = (id,...

I am working on a prototype and struggling to show the users stream back to the user once they have connected. I can successfully call. `const call = peer.call(connection, localStream);`...