react-native-tcp-socket
react-native-tcp-socket copied to clipboard
React Native TCP socket API for Android, iOS & macOS with SSL/TLS support.
I was not able to use your library to connect to a server using a self-signed certificate (see my issue report [here](https://github.com/Rapsssito/react-native-tcp-socket/issues/190)). On node it's as a simple as writing...
When `client.write()` finally sends I get the following error. `[RangeError: Property storage exceeds 196607 properties]`. I'm then trying to send that data via your library. Do you see any issues...
It will send an error event when connectedPort or localPort is null
https://developer.huawei.com/consumer/cn/support/feedback/#/ticketDetail?id=455297
{ if (client) { client.setNoDelay(true); const hugeData = 'h'.repeat(40 * 1024); console.log('TcpSocketDemo: tcp send data start:' + new Date().getTime()); client.write(hugeData, 'utf8'); } else { sendMessage('TcpSocketDemo:tcpClient is null'); } }} style={styles.moduleButton}>...
**Background** [js-libp2p](https://github.com/libp2p/js-libp2p) is the JavaScript implementation of the libp2p networking stack, enabling peer-to-peer communication with modular transport, discovery, and security protocols. Integrating it with React Native is critical for decentralized...
Description Even the simplest code using react-native-tcp-socket causes increasing memory usage over time. The issue occurs with a basic TCP server that accepts connections, responds with an echo, and closes...
Description: I've been experiencing issues implementing SSL in my React Native application using react-native-tcp-socket. I discovered that the only keystore file that works with the library uses RC2-40-CBC encryption (as...
Hi, I use react-native-tcp-socket to transfer large file between devices in the LAN wifi. But I found that it was slow. The throughput was about 1MB/s. The devices have good...
Thanks for this library. I've tried to use it with another library which essentially does: ``` const net = require("net"); const client = net.createConnection({ port: 1883, host: "example.com" }); client.write("Hello,...