socket.io-client
[![Build Status](https://secure.travis-ci.org/socketio/socket.io-client.svg?branch=master)](http://travis-ci.org/socketio/socket.io-client) [![Dependency Status](https://david-dm.org/socketio/socket.io-client.svg)](https://david-dm.org/socketio/socket.io-
Last updated 8 years ago by darrachequesne .
MIT · Repository · Bugs · Original npm
$ cnpm install socket.io-client 
SYNC missed versions from official npm registry.

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

Current Tags

  • 4.5.1                                ...           latest (3 years ago)

13 Versions

  • 3.1.1                                ...           5 years ago
  • 4.5.1                                ...           3 years ago
  • 0.9.16                                ...           12 years ago
  • 3.1.3                                ...           4 years ago
  • 4.4.1                                ...           4 years ago
  • 3.0.0-rc4                                ...           5 years ago
  • 2.4.0                                ...           5 years ago
  • 2.3.0                                ...           6 years ago
  • 2.2.0                                ...           7 years ago
  • 2.0.4                                ...           8 years ago
  • 2.1.1                                ...           7 years ago
  • 1.7.2                                ...           9 years ago
  • 1.7.4                                ...           8 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (13)
Dev Dependencies (25)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org