You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -55,10 +63,11 @@ Exposed as the `io` namespace in the standalone build, or the result of calling
55
63
56
64
The protocol revision number.
57
65
58
-
#### io(url[, options])
66
+
#### io([url][, options])
59
67
60
-
-`url`_(String)_
68
+
-`url`_(String)_ (defaults to `window.location`)
61
69
-`options`_(Object)_
70
+
-`forceNew`_(Boolean)_ whether to reuse an existing connection
62
71
-**Returns**`Socket`
63
72
64
73
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
69
78
70
79
See [new Manager(url[, options])](#new-managerurl-options) for available `options`.
71
80
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
+
constsocket=io();
89
+
constadminSocket=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
+
constsocket=io();
97
+
constadminSocket=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
+
constsocket=io();
105
+
constsocket2=io();
106
+
// will also create two distinct connections
107
+
```
108
+
109
+
##### With custom `path`
110
+
111
+
```js
112
+
constsocket=io('http://localhost', {
113
+
path:'/myownpath'
114
+
});
115
+
116
+
// server-side
117
+
constio=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
+
constsocket=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
+
constsocket=io('http://localhost?token=abc');
138
+
139
+
// server-side
140
+
constio=require('socket.io')();
141
+
142
+
// middleware
143
+
io.use((socket, next) => {
144
+
let token =socket.handshake.query.token;
145
+
if (isValid(token)) {
146
+
returnnext();
147
+
}
148
+
returnnext(newError('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
+
constsocket=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
+
constsocket=io({
184
+
transportOptions: {
185
+
polling: {
186
+
extraHeaders: {
187
+
'x-clientid':'abc'
188
+
}
189
+
}
190
+
}
191
+
});
192
+
193
+
// server-side
194
+
constio=require('socket.io')();
195
+
196
+
// middleware
197
+
io.use((socket, next) => {
198
+
let clientId =socket.handshake.headers['x-clientid'];
199
+
if (isValid(clientId)) {
200
+
returnnext();
201
+
}
202
+
returnnext(newError('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
+
constsocket=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, ...)
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
+
constparser=require('socket.io-msgpack-parser'); // or require('socket.io-json-parser')
228
+
constsocket=io({
229
+
parser: parser
230
+
});
231
+
232
+
// the server-side must have the same parser, to be able to communicate
233
+
constio=require('socket.io')({
234
+
parser: parser
235
+
});
236
+
```
237
+
72
238
### Manager
73
239
74
240
#### new Manager(url[, options])
@@ -90,6 +256,7 @@ See [new Manager(url[, options])](#new-managerurl-options) for available `option
90
256
-`autoConnect`_(Boolean)_ by setting this false, you have to call `manager.open`
91
257
whenever you decide it's appropriate
92
258
-`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).
93
260
-**Returns**`Manager`
94
261
95
262
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).
0 commit comments