json-api
json-api copied to clipboard
Turn your node app into a JSON API server (http://jsonapi.org/)
I'm trying this library with [koa](koajs.com); but could not achieve success. Could you please provide a super-simple koa example (like the one in the README?̊̈) (When I converted my koa...
I like the look of https://www.fastify.io/ and would like to create an integration for it. It uses a plugin design which seems pretty different to Express and other examples here,...
It's posible an integration with mysql stack?
Is there a reason JSON:API server doesn't allow the ability to populate embedded data ? Right now it only allows you to populate reference data and it does not allow...
#### Description This PR fixes one or more vulnerable packages in the `npm` dependencies of this project. See the [Snyk test report](https://app.snyk.io/org/ethanresnick/test/github/4f4e57b6-5b74-49f8-a285-cbdff0817079/master..snyk-fix-8o49ip) for more details. #### Snyk Project: [ethanresnick/json-api:package.json](https://app.snyk.io/org/ethanresnick/project/4f4e57b6-5b74-49f8-a285-cbdff0817079) ####...
I saw some open tickets for URL Encoding but I am not sure if it pertains to this. I am unable to test with applications such as Postman because the...
Having express and mongoose support in the main package means we need to have them listed as `peerDependencies`, which causes warnings if you're using the library with a different strategy/adapter.
When using the json-api-example app the response contains a duplication of the scheme (http://) as in: {"links":{"self":"http://http://127.0.0.1:3000/people"},"data": ... Not sure if this is the example app or the json-api package...
I've found a case in an app I'm working on where I need to be able to filter relationships. My domain model looks like this: * Members have many networks...
As far as I can tell, the following requests are indistinguishable to the database adapter layer. ``` GET /schools/1 GET /schools/1/relationships/principal ``` In both cases, the full school resource is...