Setup_bitable/monitor/setup/node_client/node_modules/socket.io-client
2021-01-25 11:11:38 +07:00
..
dist Add pm2 bitable pro 2021-01-25 11:11:38 +07:00
lib Add pm2 bitable pro 2021-01-25 11:11:38 +07:00
node_modules Add pm2 bitable pro 2021-01-25 11:11:38 +07:00
History.md Add pm2 bitable pro 2021-01-25 11:11:38 +07:00
LICENSE Add pm2 bitable pro 2021-01-25 11:11:38 +07:00
package.json Add pm2 bitable pro 2021-01-25 11:11:38 +07:00
README.md Add pm2 bitable pro 2021-01-25 11:11:38 +07:00

socket.io-client

Build Status Dependency Status devDependency Status NPM version Downloads

Sauce Test Status

How to use

A standalone build of socket.io-client is exposed automatically by the socket.io server as /socket.io/socket.io.js. Alternatively you can serve the file socket.io.js found in the dist folder.

<script src="/socket.io/socket.io.js"></script>
<script>
  var socket = io('http://localhost');
  socket.on('connect', function(){});
  socket.on('event', function(data){});
  socket.on('disconnect', function(){});
</script>

A slim build (without JSON3, a JSON polyfill for IE6/IE7, and debug) is also available: socket.io.slim.js.

Socket.IO is compatible with browserify.

Node.JS (server-side usage)

Add socket.io-client to your package.json and then:

var socket = require('socket.io-client')('http://localhost');
socket.on('connect', function(){});
socket.on('event', function(data){});
socket.on('disconnect', function(){});

API

See API

License

MIT