node's net api in react-native
Go to file
Andy Prock f2c6261a7c 3.0.7 2017-01-10 14:07:17 -08:00
android fix oustanding issues 2016-06-17 13:55:05 -07:00
examples/rctsockets ensure events correspond to generated socket ids 2017-01-03 10:22:39 -08:00
interfaces add more flow annotations 2015-12-23 10:57:51 -08:00
ios Fix #30, add missing semicolons 2017-01-10 14:07:13 -08:00
.eslintignore add more flow annotations 2015-12-23 10:57:51 -08:00
.eslintrc start integrating static analysis 2015-12-16 15:05:08 -08:00
.flowconfig fix oustanding issues 2016-06-17 13:55:05 -07:00
.gitignore add android support 2015-12-29 16:00:18 -08:00
.npmignore add examples to npmignore 2016-12-15 13:52:48 -08:00
LICENSE prepare for public release 2016-01-02 11:03:35 -08:00
README.md Fixes #24 stream compatibility udpates 2016-12-01 13:16:00 -08:00
TcpServer.js ensure server close events are being sent 2016-11-09 10:47:03 -08:00
TcpSocket.js Fixes #10, socket timeout now refreshes on data 2016-12-02 11:33:01 -08:00
TcpSockets.js push socket creation into connect and listen methods 2015-12-28 11:12:21 -08:00
base64-str.js add more flow annotations 2015-12-23 10:57:51 -08:00
package.json 3.0.7 2017-01-10 14:07:17 -08:00

README.md

TCP in React Native

node's net API in React Native

This module is used by Peel

Install

npm install --save 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
  1. run rn-nodeify manually
rn-nodeify --install stream,process,util --hack
  1. 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

Contributors

Andy Prock

PR's welcome!

originally forked from react-native-udp