HATEOAS-first backend framework.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728293031323334
  1. - [ ] Integrate with other data stores
  2. - [ ] SQLite
  3. - [ ] PostgreSQL
  4. - [X] Access control with resources
  5. - [ ] Custom definitions
  6. - [ ] Middlewares
  7. - [ ] Request decorators
  8. - [ ] Status messages
  9. - [ ] Response bodies (in case of error messages)
  10. - [ ] Content negotiation
  11. - [X] Language
  12. - [X] Charset
  13. - [X] Media Type
  14. - [X] Improve content negotiation on success/error responses (able to explicitly select language/media type/charset)
  15. - [X] HTTPS
  16. - [X] Date/Datetime handling (endpoints should be able to accept timestamps and ISO date/datetime strings)
  17. - [ ] Querying items in collections
  18. - [ ] Better URL parsing for determining target resource/resource IDs (e.g. `/api/users/3/posts/5`, `/users/3` is a query, `posts` is the target resource, `5` is the target resource ID. Different case with `/api/users/3/posts/5/attachments`)
  19. - [ ] Declare relationship (e.g. `/users/3/posts`)
  20. - [ ] Tests
  21. - [X] Happy path
  22. - [ ] Error handling
  23. - [X] Resource handlers
  24. - [ ] Generic errors
  25. - [ ] Implement error handling compliant to RFC 9457 - Problem Details for HTTP APIs
  26. - [ ] Create RESTful client for frontend, server for backend (specify data sources on the server side)
  27. - [ ] `EventEmitter` for `202 Accepted` requests (CQRS-style service)
  28. - [ ] Implement RPC endpoints
  29. - [ ] Implement `Vary` header (requires providing a `getHeader()` method in the request object to listen for obtained headers)
  30. - [ ] Add example on serving data as documents using `application/html` type.
  31. - [ ] OpenAPI support
  32. - [ ] Swagger docs plugin
  33. - [ ] Plugin support
  34. - [ ] Add option to reject content negotiation params with `406 Not Acceptable`