https://github.com/MahirMahdi/refine-jsonapi
DataProvider for refine with JSON:API specifications
https://github.com/MahirMahdi/refine-jsonapi
Last synced: 5 days ago
JSON representation
DataProvider for refine with JSON:API specifications
- Host: GitHub
- URL: https://github.com/MahirMahdi/refine-jsonapi
- Owner: MahirMahdi
- Created: 2023-10-22T05:36:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-24T01:10:57.000Z (over 1 year ago)
- Last Synced: 2024-04-24T10:16:06.617Z (12 months ago)
- Language: TypeScript
- Size: 110 KB
- Stars: 12
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-refine - refine-jsonapi
README
# refine-jsonapi
[](https://opensource.org/licenses/MIT)
[](https://www.npmjs.com/package/refine-jsonapi)
[](https://www.npmjs.com/package/refine-jsonapi)

`refine-jsonapi` is a data provider for [refine](https://refine.dev/) that provides an implementation for working with JSON API specifications that conform to a standard API design. It is built on the foundation of the [JSON:API](https://jsonapi.org/) specifications.
## Installation
Install `refine-jsonapi` via npm:
```bash
npm install refine-jsonapi
```## Usage
```tsx
import dataProvider from "refine-jsonapi";const App = () => {
return (
{/* ... */}
);
};
```## Documentation
- For more detailed information and usage, refer to [the refine data provider documentation](https://refine.dev/docs/api-reference/core/providers/data-provider/).
- [Refer to documentation for more info about refine](https://refine.dev/docs/)
- [Step up to refine tutorials.](https://refine.dev/docs/tutorial/introduction/index/)