Skip to content

Instantly share code, notes, and snippets.

@teyfix
Created June 20, 2021 12:37
Show Gist options
  • Select an option

  • Save teyfix/62fd3d8a6685d6b15c4b0439239fccd0 to your computer and use it in GitHub Desktop.

Select an option

Save teyfix/62fd3d8a6685d6b15c4b0439239fccd0 to your computer and use it in GitHub Desktop.
rxjs - simple socket.io
import { fromEvent } from 'rxjs';
import io from 'socket.io-client';
const client = io().connect();
const listen = (event: string) => fromEvent(client, event);
listen('message').subscribe((message) => console.log(message));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment