Skip to content

Latest commit

 

History

History

hello-websocket-go

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Hello Websocket golang

dependent libs

<github.com/gorilla/websocket>

go mod init hello-websocket
go env -w GO111MODULE=on
go mod tidy

run server

go run server/echo_server.go

run client

go run client/echo_client.go Eric
go run client/echo_client.go Caroline

hello-websocket