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
+6.9k Web : How to see your website from different countries?
+15.9k Golang : Generate universally unique identifier(UUID) example
+7.2k Golang : Fixing Gorilla mux http.FileServer() 404 problem
+7.3k Golang : Convert source code to assembly language
+17.8k Golang : How to log each HTTP request to your web server?
+27.5k PHP : Count number of JSON items/objects
+4.9k Golang : Display packages names during compilation
+9.3k Golang : Get all countries currencies code in JSON format
+10.2k Golang : Convert file unix timestamp to UTC time example
+13.1k Golang : Date and Time formatting
+8.4k Linux/Unix : fatal: the Postfix mail system is already running
+9.3k Golang : Extract or copy items from map based on value