echox
echox copied to clipboard
Echo cookbook and website
update timeout middleware with warnings and add example how to implement similar functionality in handler function
This change adds an example of how to test a middleware function.
I tried the example and validator was not working. Doing this change works so probably this needs a fix
The Google App Engine example is unsafely reading / writing from a map. This fixes it to use a RWMutex to ensure that map is accessed safely.
hey, I'm a beginner, studying golang testing example produce this result: Running tool: C:\Go\bin\go.exe test -timeout 30s github.com\likejehu\xpl -run ^(TestCreateUser)$ --- FAIL: TestCreateUser (0.00s) c:\Users\aart\go\src\github.com\likejehu\xpl\handler_test.go:32: Error Trace: handler_test.go:32 Error: Not...
Add note that echo.Context must not accessed out of coroutine handling that request Relates to https://github.com/labstack/echo/issues/1908
For: `echox/website/content/cookbook/websocket.md` The example usage of Gorilla WS, will lead to a websocket origin not allowed error if you wanna use it to a websocket client. I recommend: ```golang var...
Add documentation about how to bind multiple instances of the same query parameter to a slice. Use this UT as a reference (if it is possible make a more real...
As a beginner many, including myself, my use this hello world sample as a starting point to learn and test. However c.String can't be used for much more, at lest...