Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active November 16, 2017 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/2715b34e40c9213f16ff6e68827efe2f to your computer and use it in GitHub Desktop.
Save Ibro/2715b34e40c9213f16ff6e68827efe2f to your computer and use it in GitHub Desktop.
ASP.NET Core SignalR chat with Angular 5 - https://codingblast.com/asp-net-core-signalr-chat-angular
this.hubConnection.on('sendToAll', (nick: string, receivedMessage: string) => {
const text = `${nick}: ${receivedMessage}`;
this.messages.push(text);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment