Leon
Leon
For anyone still struggling with this. Changing the node resolutions options for `chalk` helped me to avoid global variable pollution as it turned out other libraries act differently if `process`...
Hello, The following code works (the ws handle) ```go app.Get("/api/ws", websocket.Handler(ws)) api := app.Party("/api") { api.Use(iris.Compression) api.Get("/ping", pingHandler) api.Post("/user-session", createUserSessionHandler) api.Get("/game/:id", getGameHandler) app.Get("/logout", logoutHandler) } ``` The following does not...