Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/saturngod/socket.io-with-ios

(deprecated). Please use https://github.com/socketio/socket.io-client-swift . Node.js socket.io with iOS. It's using https://github.com/pkyeck/socket.IO-objc
https://github.com/saturngod/socket.io-with-ios

Last synced: about 2 months ago
JSON representation

(deprecated). Please use https://github.com/socketio/socket.io-client-swift . Node.js socket.io with iOS. It's using https://github.com/pkyeck/socket.IO-objc

Awesome Lists containing this project

README

        

Socket.io with objective-c example.

- Objective-C code from [https://github.com/pkyeck/socket.IO-objc](https://github.com/pkyeck/socket.IO-objc)
- Socket.io server code from [https://github.com/saturngod/geek_chat](https://github.com/saturngod/geek_chat)

##For running the app

Change IP address at sockio-server/views/index.html

```
var socket = io.connect("192.168.1.10:3000");
```

Run socket.io chat like

node ./sockio-server/app.js

Change IP address at Objective-C code

```
[_socketIO connectToHost:@"localhost" onPort:3000];
```