Skip to content

Commit c0da119

Browse files
authoredJun 3, 2017
[docs] Update documentation (#1124)
1 parent c3c0270 commit c0da119

File tree

1 file changed

+188
-4
lines changed

1 file changed

+188
-4
lines changed
 

‎docs/API.md

+188-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@
33

44
- [IO](#io)
55
- [io.protocol](#ioprotocol)
6-
- [io(url[, options])](#iourl-options)
6+
- [io([url][, options])](#iourl-options)
7+
- [Initialization examples](#initialization-examples)
8+
- [With multiplexing](#with-multiplexing)
9+
- [With custom path](#with-custom-path)
10+
- [With query parameters](#with-query-parameters)
11+
- [With query option](#with-query-option)
12+
- [With extraHeaders](#with-extraheaders)
13+
- [With websocket transport only](#with-websocket-transport-only)
14+
- [With a custom parser](#with-a-custom-parser)
715
- [Class: io.Manager](#manager)
816
- [new Manager(url[, options])](#new-managerurl-options)
917
- [manager.reconnection([value])](#managerreconnectionvalue)
@@ -55,10 +63,11 @@ Exposed as the `io` namespace in the standalone build, or the result of calling
5563

5664
The protocol revision number.
5765

58-
#### io(url[, options])
66+
#### io([url][, options])
5967

60-
- `url` _(String)_
68+
- `url` _(String)_ (defaults to `window.location`)
6169
- `options` _(Object)_
70+
- `forceNew` _(Boolean)_ whether to reuse an existing connection
6271
- **Returns** `Socket`
6372

6473
Creates a new `Manager` for the given URL, and attempts to reuse an existing `Manager` for subsequent calls, unless the `multiplex` option is passed with `false`. Passing this option is the equivalent of passing `'force new connection': true` or `forceNew: true`.
@@ -69,6 +78,163 @@ Query parameters can also be provided, either with the `query` option or directl
6978

7079
See [new Manager(url[, options])](#new-managerurl-options) for available `options`.
7180

81+
#### Initialization examples
82+
83+
##### With multiplexing
84+
85+
By default, a single connection is used when connecting to different namespaces (to minimize resources):
86+
87+
```js
88+
const socket = io();
89+
const adminSocket = io('/admin');
90+
// a single connection will be established
91+
```
92+
93+
That behaviour can be disabled with the `forceNew` option:
94+
95+
```js
96+
const socket = io();
97+
const adminSocket = io('/admin', { forceNew: true });
98+
// will create two distinct connections
99+
```
100+
101+
Note: reusing the same namespace will also create two connections
102+
103+
```js
104+
const socket = io();
105+
const socket2 = io();
106+
// will also create two distinct connections
107+
```
108+
109+
##### With custom `path`
110+
111+
```js
112+
const socket = io('http://localhost', {
113+
path: '/myownpath'
114+
});
115+
116+
// server-side
117+
const io = require('socket.io')({
118+
path: '/myownpath'
119+
});
120+
```
121+
122+
The request URLs will look like: `localhost/myownpath/?EIO=3&transport=polling&sid=<id>`
123+
124+
```js
125+
const socket = io('http://localhost/admin', {
126+
path: '/mypath'
127+
});
128+
```
129+
130+
Here, the socket connects to the `admin` namespace, with the custom path `mypath`.
131+
132+
The request URLs will look like: `localhost/mypath/?EIO=3&transport=polling&sid=<id>` (the namespace is sent as part of the payload).
133+
134+
##### With query parameters
135+
136+
```js
137+
const socket = io('http://localhost?token=abc');
138+
139+
// server-side
140+
const io = require('socket.io')();
141+
142+
// middleware
143+
io.use((socket, next) => {
144+
let token = socket.handshake.query.token;
145+
if (isValid(token)) {
146+
return next();
147+
}
148+
return next(new Error('authentication error'));
149+
});
150+
151+
// then
152+
io.on('connection', (socket) => {
153+
let token = socket.handshake.query.token;
154+
// ...
155+
});
156+
```
157+
158+
##### With query option
159+
160+
```js
161+
const socket = io({
162+
query: {
163+
token: 'cde'
164+
}
165+
});
166+
```
167+
168+
The query content can also be updated on reconnection:
169+
170+
```js
171+
socket.on('reconnect_attempt', () => {
172+
socket.io.opts.query = {
173+
token: 'fgh'
174+
}
175+
});
176+
```
177+
178+
##### With `extraHeaders`
179+
180+
Note: will only work if `polling` transport is enabled (which is the default)
181+
182+
```js
183+
const socket = io({
184+
transportOptions: {
185+
polling: {
186+
extraHeaders: {
187+
'x-clientid': 'abc'
188+
}
189+
}
190+
}
191+
});
192+
193+
// server-side
194+
const io = require('socket.io')();
195+
196+
// middleware
197+
io.use((socket, next) => {
198+
let clientId = socket.handshake.headers['x-clientid'];
199+
if (isValid(clientId)) {
200+
return next();
201+
}
202+
return next(new Error('authentication error'));
203+
});
204+
```
205+
206+
##### With `websocket` transport only
207+
208+
By default, a long-polling connection is established first, then upgraded to "better" transports (like WebSocket). If you like to live dangerously, this part can be skipped:
209+
210+
```js
211+
const socket = io({
212+
transports: ['websocket']
213+
});
214+
215+
// on reconnection, reset the transports option, as the Websocket
216+
// connection may have failed (caused by proxy, firewall, browser, ...)
217+
socket.on('reconnect_attempt', () => {
218+
socket.io.opts.transports = ['polling', 'websocket'];
219+
});
220+
```
221+
222+
##### With a custom parser
223+
224+
The default [parser](https://github.com/socketio/socket.io-parser) promotes compatibility (support for `Blob`, `File`, binary check) at the expense of performance. A custom parser can be provided to match the needs of your application. Please see the example [here](https://github.com/socketio/socket.io/tree/master/examples/custom-parsers).
225+
226+
```js
227+
const parser = require('socket.io-msgpack-parser'); // or require('socket.io-json-parser')
228+
const socket = io({
229+
parser: parser
230+
});
231+
232+
// the server-side must have the same parser, to be able to communicate
233+
const io = require('socket.io')({
234+
parser: parser
235+
});
236+
```
237+
72238
### Manager
73239

74240
#### new Manager(url[, options])
@@ -90,6 +256,7 @@ See [new Manager(url[, options])](#new-managerurl-options) for available `option
90256
- `autoConnect` _(Boolean)_ by setting this false, you have to call `manager.open`
91257
whenever you decide it's appropriate
92258
- `query` _(Object)_: additional query parameters that are sent when connecting a namespace (then found in `socket.handshake.query` object on the server-side)
259+
- `parser` _(Parser)_: the parser to use. Defaults to an instance of the `Parser` that ships with socket.io. See [socket.io-parser](https://github.com/socketio/socket.io-parser).
93260
- **Returns** `Manager`
94261

95262
The `options` are also passed to `engine.io-client` upon initialization of the underlying `Socket`. See the available `options` [here](https://github.com/socketio/engine.io-client#methods).
@@ -218,7 +385,24 @@ socket.on('connect', function(){
218385

219386
- **Returns** `Socket`
220387

221-
Opens the socket.
388+
Manually opens the socket.
389+
390+
```js
391+
const socket = io({
392+
autoConnect: false
393+
});
394+
395+
// ...
396+
socket.open();
397+
```
398+
399+
It can also be used to manually reconnect:
400+
401+
```js
402+
socket.on('disconnect', () => {
403+
socket.open();
404+
});
405+
```
222406

223407
#### socket.connect()
224408

0 commit comments

Comments
 (0)
Please sign in to comment.