From 9eae714c1ada39cb8a8b1c6cd195b70d61f9d53c Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Tue, 23 Jul 2019 05:53:30 +0300 Subject: [PATCH] minor --- Websockets.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Websockets.md b/Websockets.md index 0ed0e92..f38edc4 100644 --- a/Websockets.md +++ b/Websockets.md @@ -4,7 +4,13 @@ Use WebSockets when you need to work directly with a socket connection. For example, you might need the best possible performance for a real-time game. -First of all, read the **[kataras/neffos wiki](https://github.com/kataras/neffos/wiki)** to master the new websocket library built for net/http and Iris. +First of all, read the **[kataras/neffos wiki](https://github.com/kataras/neffos/wiki)** to master the new websocket library built for net/http and Iris. + +It comes pre-installed with Iris, however you can install it separately by executing the following shell command. + +```sh +$ go get github.com/kataras/neffos@v0.0.8 +``` Continue by reading how you can register the neffos websocket server into your Iris application.