Giter VIP home page Giter VIP logo

react-native-tcp's Introduction

TCP in React Native

node's net API in React Native

Install

npm install @photon-sdk/react-native-tcp --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'

Link in the native dependency

react-native link @photon-sdk/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') or require('tls') in your javascript

{
  "react-native": {
    "net": "@photon-sdk/react-native-tcp",
    "tls": "@photon-sdk/react-native-tcp/tls"
  }
}

JS

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 support

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

react-native-tcp's People

Contributors

ahizzle avatar alwx avatar aprock avatar baardbouvet avatar bettiah avatar cobarx avatar edwardlafoy avatar franrios avatar jsdario avatar naviocean avatar overtorment avatar paullinator avatar richfisher avatar safitudo avatar snoyiatk avatar staltz avatar tanx avatar thehobbit85 avatar wfilleman avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.