Last active
May 4, 2017 06:21
-
-
Save Ibro/e1e219b7102d06455a0cff0df2e62657 to your computer and use it in GitHub Desktop.
RxJS Socket.IO Angular Chat - Angular Service - Coding Blast - www.codingblast.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as io from 'socket.io-client'; | |
export class ChatService { | |
private url = 'http://localhost:3000'; | |
private socket; | |
constructor() { | |
this.socket = io(this.url); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment