refine-jsonapi
Version:
Data provider for refine with JSON:API specification. refine is a React-based framework for building internal tools, rapidly. JSON:API is a specification for building apis in JSON.
43 lines (31 loc) • 1.6 kB
Markdown
# 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 (
<Refine
dataProvider={dataProvider("API_URL")}
/* ... */
>
{/* ... */}
</Refine>
);
};
```
## 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/)