Skip to content

Instantly share code, notes, and snippets.

@ayberkanilatsiz
Last active October 12, 2017 07:03
Show Gist options
  • Save ayberkanilatsiz/627035b93931416276d91a34b5404e31 to your computer and use it in GitHub Desktop.
Save ayberkanilatsiz/627035b93931416276d91a34b5404e31 to your computer and use it in GitHub Desktop.
createSocket
constructor(props){
this.socket = SocketIOClient('http://192.168.1.183:3000'); //Local ip'niz yada http://locahost:3000 olmalı
this.socket.on('messages', this.onReceivedMessage);
this.socket.on('userId', this.getUserId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment