We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6460fb1 commit d0dcd5bCopy full SHA for d0dcd5b
README.md
@@ -153,7 +153,7 @@ const server = TcpSocket.createServer(function(socket) {
153
socket.on('close', (error) => {
154
console.log('Closed connection with ', socket.address());
155
});
156
-}).listen(12345, '0.0.0.0');
+}).listen({ port: 12345, host: '0.0.0.0' });
157
158
server.on('error', (error) => {
159
console.log('An error ocurred with the server', error);
package.json
@@ -41,6 +41,10 @@
41
"tcp",
42
"react-native-library"
43
],
44
+ "funding": {
45
+ "type" : "individual",
46
+ "url" : "https://github.com/sponsors/Rapsssito"
47
+ },
48
"author": {
49
"name": "Rapsssito",
50
"email": "contact@rodrigomartin.dev"
0 commit comments