gorilla
Here are 73 public repositories matching this topic...
Points to cover
- An application can handle subprotocol negotiation on its own by setting the Sec-Websocket-Protocol response header. The
Subprotocols(r *http.Request) []stringfunction is helpful here. - Set u.Subprotocols for builtin subprotocol negotiation. Builtin negotiation overrides a subprotocol specified in the response header (it would have been better to return an error, but it
Is your feature request related to a problem? Please describe.
We are using recovery handler with stack trace. However, as per https://github.com/gorilla/handlers/blob/master/recovery.go#L89, stack trace is only printed to stdout.
Describe the solution you'd like
As we are logging everything as json, having raw stdout for stack trace is not ideal. It will be great to have ability to p
-
Updated
May 30, 2020 - Go
-
Updated
Aug 22, 2019 - Go
-
Updated
Feb 29, 2020 - Go
Currently, sessions are stored in the application memory. Adding a memcached driver will let developers share sessions across app instances
-
Updated
Nov 7, 2019 - Modula-2
-
Updated
Jul 17, 2018 - Go
-
Updated
Apr 3, 2018 - HTML
-
Updated
Dec 24, 2016 - Go
-
Updated
Mar 28, 2018 - Go
-
Updated
Oct 16, 2019 - Go
Improve this page
Add a description, image, and links to the gorilla topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the gorilla topic, visit your repo's landing page and select "manage topics."


RFC 7231 Section 6.5.5
States that
Which is clearly not implemented right now
https://github.com/gorilla/mux/blob/75dcda0896e109a2a22c9315bca3bb21b87b2ba5/mux.go#L601-L603
Sugg