Appearance
Core
It provides CRUD based services with HTTP request built in:
readGET it can recieve a/:idstring or a params object{}, query params, so you can use as a simple search or paginationcreatePOST with bodyupdatePUT/:idwith bodydeleteDELETE/:id
The HTTP client is based on axios, and its create method receive an AxiosRequestConfig object, so if you need and security header or further configuration, you are free.
There are two types of configuration: createCRUD and createSimpleCRUD both of them expect the same props, only the result functions that behavior different.