Skip to content

Instantly share code, notes, and snippets.

@Njuelle
Created January 12, 2019 13:14
Show Gist options
  • Select an option

  • Save Njuelle/9d4b4ccfc048a7c638cfd15d46aded18 to your computer and use it in GitHub Desktop.

Select an option

Save Njuelle/9d4b4ccfc048a7c638cfd15d46aded18 to your computer and use it in GitHub Desktop.
Minimum NodeJS Socket.io client
var socket = require('socket.io-client')('http://localhost:1337');
socket.on('connect', () => {
socket.send('hi');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment