Categorygithub.com/adminoryuan/HyWebsocket
repositorypackage
1.0.4
Repository: https://github.com/adminoryuan/hywebsocket.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

HyWebsocket (websocket开发库)

  • 介绍

    • 使用golang 开发的一个websoket 库
    • golang Mit
  • 快速入门

  • 安装

  • 具体功能

  • 实例


func main() {
	h := NewWebsocket()

	h.OnConnect(func(ic connection.IWsCli) {
		//ic.Write([]byte("heelo"))
		fmt.Printf("链接成功 \n")
	})

	h.onReadEvent(func(c ctx.Context) {
		fmt.Printf("recv %s \n", string(c.Req.Bodys))

		c.Resp.Write([]byte("zhangsan"))

	}) 
	h.StartServer(":9091")
}