socket.io-client

Realtime application framework (client)

Github星跟踪图

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 or include it via CDN.

<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>
// with ES6 import
import io from 'socket.io-client';

const socket = io('http://localhost');

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 and webpack (see example there).

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

主要指标

概览
名称与所有者socketio/socket.io-client
主编程语言
编程语言JavaScript (语言数: 0)
平台
许可证
所有者活动
创建于2010-03-11 18:23:03
推送于2024-07-09 10:20:28
最后一次提交2022-01-10 08:05:04
发布数149
最新版本名称4.7.5 (发布于 )
第一版名称0.1 (发布于 2010-03-18 23:01:35)
用户参与
星数10.6k
关注者数298
派生数3k
提交数1.8k
已启用问题?
问题数1027
打开的问题数0
拉请求数280
打开的拉请求数4
关闭的拉请求数278
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?