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
Currently, the SDK provides 3 protocols: `Http`, `WebSocket` and `SocketIO`.
111
+
112
+
Currently, the SDK provides 3 protocols: `Http`, `WebSocket` and `SocketIO`.
112
113
113
114
WebSocket and Socket.IO protocols implement the whole Kuzzle API, while the **HTTP protocol does not implement realtime features** (rooms and subscriptions).
114
115
While Socket.IO offers better compatibility with older web browsers, our raw WebSocket implementation is about 20% faster.
115
116
116
-
#### NodeJS
117
+
#### Node.js
117
118
118
119
We recommend using the `WebSocket` protocol, but you can still use `Http`, `SocketIO` or even a custom protocol if you want.
119
120
@@ -225,8 +226,8 @@ Each controller is accessible from the Kuzzle object. The controller's actions a
225
226
For example, for the `create` action of the `document` controller ([document:create](https://docs-v2.kuzzle.io/api/1/controller-document/create)):
0 commit comments