go-json-rest
go-json-rest copied to clipboard
A quick and easy way to setup a RESTful JSON API
Is this project abandoned? What do you suggest as alternatives for a Golang JSON Api server?
I also created a PR because a memory leak occurred in the project I'm using. Please review. close #230
I'd love to help out, as I'm using it in the @dokku project, and it would be great to have this package in a more maintained form :)
I've created a (small) middleware that implements time.Sleep(). May be useful during development to see how clients handle timeouts or slow requests. Also ordered the list alphabetically.
Every exported function in a program should have a doc comment. The first sentence should be a summary that starts with the name being declared. From [effective go](https://golang.org/doc/effective_go.html#commentary). PR generated...
I build this project example. in Countries demo ```bash curl -i -H 'Content-Type: application/json' \ -d '{"Code":"FR","Name":"France"}' http://127.0.0.1:8080/countries # it has to return 201(CREATED), but return 200(OK) curl -i -H...
This adds the PathExp to the Request object so that code downstream of the router is aware which route is satisfying the current request. Primary motivation for this is to...
I try to find a way to use Auth0 for authorization, but i can't succeed. would be great to have a example for this
I have some optional bits of code in my app that enable or disable groups or routes dynamically. To realize this, I have to make my plugins generate lists of...
When investigating memory usage for an app that uses this project, I noticed that memory usage continually climbed over time with thousands of requests. After further investigation I think I...