Socket
Socket
Sign inDemoInstall

react-native-tcp

Package Overview
Dependencies
518
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-tcp

node's net API for react-native


Version published
Weekly downloads
3.1K
decreased by-8.69%
Maintainers
1
Install size
551 kB
Created
Weekly downloads
 

Readme

Source

TCP in React Native

node's net API in React Native

This module is used by Peel

Install

npm install react-native-tcp --save

Note for iOS: If your react-native version < 0.40 install with this tag instead:

npm install react-native-tcp@3.1.0 --save

if using Cocoapods

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 react-native-tcp

Additional dependencies

Due to limitations in the react-native packager, streams need to be hacked in with rn-nodeify

  1. install rn-nodeify as a dev-dependency npm install --save-dev rn-nodeify
  2. run rn-nodeify manually rn-nodeify --install stream,process,util --hack
  3. optionally you can add this as a postinstall script "postinstall": "rn-nodeify --install stream,process,util --hack"

Usage

package.json

only if you want to write require('net') in your javascript

{
  "browser": {
    "net": "react-native-tcp"
  }
}

JS

see/run index.ios.js/index.android.js for a complete example, but basically it's just like net

var net = require('net');
// OR, if not shimming via package.json "browser" field:
// var net = require('react-native-tcp')

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)
});

TODO

add select tests from node's tests for net

PR's welcome!

originally forked from react-native-udp

Keywords

FAQs

Last updated on 04 Apr 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc