@blackbox-vision/ra-data-microservices
v1.0.0
Published
React Admin data provider with support for microservices
Downloads
2
Readme
Micro Services DataProvider
React Admin DataProvider with support for micro-services architecture.
Install
You can install this library via NPM or YARN.
NPM
npm i @blackbox-vision/ra-data-microservices
YARN
yarn add @blackbox-vision/ra-data-microservices
Use case
You use react-admin for building a frontend to manage CRUD resources, and you have a micro-service architecture for your services.
Example Usage
import React from 'react';
import { Admin, Resource } from 'react-admin';
import { microServicesProvider } from '@blackbox-vision/ra-data-microservices';
import { PostList } from './posts';
const App = () => (
<Admin
dataProvider={microServicesProvider({ posts: 'http://posts.api.url' })}
>
<Resource name="posts" list={PostList} />
</Admin>
);
export default App;
Issues
Please, open an issue following one of the issues templates. We will do our best to fix them.
Contributing
If you want to contribute to this project see contributing for more information.
License
Distributed under the MIT license. See LICENSE for more information.