Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@photon-sdk/react-native-tcp
Advanced tools
node's net API in React Native
Create a new react-native project. Check react-native getting started
In your project dir:
npm install @photon-sdk/react-native-tcp --save
Update the following line with your path to node_modules/
and add it to your
podfile:
pod 'TcpSockets', :path => '../node_modules/react-native-tcp'
react-native link @photon-sdk/react-native-tcp
npm install --save-dev rn-nodeify
rn-nodeify --install stream,process,util --hack
"postinstall": "rn-nodeify --install stream,process,util --hack"
only if you want to write require('net') or require('tls') in your javascript
{
"react-native": {
"net": "@photon-sdk/react-native-tcp",
"tls": "@photon-sdk/react-native-tcp/tls"
}
}
see/run index.ios.js/index.android.js for a complete example, but basically it's just like net
var net = require("net");
var net = require("tls");
// OR, if not shimming via package.json "react-native" field:
// var net = require('@photon-sdk/react-native-tcp')
// var tls = require('@photon-sdk/react-native-tcp/tls')
var server = net
.createServer(function(socket) {
socket.write("excellent!");
})
.listen(12345);
var client = net.createConnection(12345);
client.on("error", function(error) {
console.log(error);
});
client.on("data", function(data) {
console.log("message was received", data);
});
TLS is only supported in the client interface. To use TLS, use the tls.connect()
syntax and not socket = new tls.Socket()
syntax.
const socket = tls.connect({port: 50002, host:'electrum.villocq.com', rejectUnauthorized: false}, () => {
socket.write('{ "id": 5, "method": "blockchain.estimatefee", "params": [2] }\n')
console.log('Connected')
})
socket.on('data', (data) => {
console.log('data:' + data.toString('ascii'))
})
FAQs
node's net API for react-native
The npm package @photon-sdk/react-native-tcp receives a total of 49 weekly downloads. As such, @photon-sdk/react-native-tcp popularity was classified as not popular.
We found that @photon-sdk/react-native-tcp demonstrated a not healthy version release cadence and project activity because the last version was released 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.