Golang : Web(Javascript) to server-side websocket example
For this tutorial, we will explore how to write a HTML page with Javascript/JQuery that interface with server-side Golang service via Websocket. Also, this tutorial demonstrates the alternative way of posting data(apart from AJAX) to server-side and getting reply. (see also https://www.socketloop.com/tutorials/golang-jquery-ajax-post-data-to-server-and-send-data-back-to-client-example )
In the past, many gaming, chat, stock ticker or multi-user applications abused the HTTP protocol to poll the server for updates and at the same time upload notifications data back to the server as distinct HTTP calls. There are several problems that were encountered with this method. One of it is that the client-side is forced to maintain a mapping from the outgoing connections to the incoming connection to track replies.
To mitigate this problem without reinventing the entire HTTP protocol, Websocket is created as a simpler solution that enable applications to have bidirectional communication with server-side services in real time and works on port 80(http) and 443(https).
Here we go!
package main
import (
"fmt"
"github.com/gorilla/mux"
"golang.org/x/net/websocket"
"io"
"net/http"
)
func homeHandler(w http.ResponseWriter, r *http.Request) {
html := `<!DOCTYPE html>
<html>
<head>
<title>Javascript/JQuery/Golang and Websocket example</title>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script>
$(function() {
var ws = new WebSocket("ws://example.com:8080/reply"); // change example.com
var $ul = $('#msg-list');
$('#sendBtn').click(function(){
var data = $('#name').val();
ws.send(data);
console.log("Sending data to server via Webscoket :" + data);
$('<li>').text(data).appendTo($ul);
});
});
</script>
</head>
<body>
<input id="name" type="text" />
<input type="button" id="sendBtn" value="send"></input>
<ul id="msg-list"></ul>
</body></html>`
w.Write([]byte(fmt.Sprintf(html)))
}
func replyHandler(ws *websocket.Conn) {
io.Copy(ws, ws)
}
func main() {
mx := mux.NewRouter()
mx.HandleFunc("/", homeHandler)
// convert to Handler, otherwise compiler will report
// error : cannot use websocket.Handler(replyHandler) (type websocket.Handler)
mx.Handle("/reply", websocket.Handler(replyHandler))
http.ListenAndServe(":8080", mx)
}
NOTE : Do consider websocket protocol into your microservice architecture.
NOTE : The code example here is adapted from https://github.com/golang-samples/websocket/blob/master/simple/main.go
References :
See also : Golang : JQuery AJAX post data to server and send data back to client example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+19.6k Golang : How to Set or Add Header http.ResponseWriter?
+15.7k Golang : Force download file example
+28.8k Get file path of temporary file in Go
+6.5k Golang : How to search a list of records or data structures
+4.9k Which content-type(MIME type) to use for JSON data
+14.9k Golang : Find commonalities in two slices or arrays example
+12.5k Golang : How to check if a string starts or ends with certain characters or words?
+40.3k Golang : UDP client server read write example
+11.3k Golang : Calculate Relative Strength Index(RSI) example
+7.5k Golang : Accessing dataframe-go element by row, column and name example
+6k Golang : Denco multiplexer example
+20.2k Golang : Convert(cast) bytes.Buffer or bytes.NewBuffer type to io.Reader