Socket
Socket
Sign inDemoInstall

@blackbox-vision/ra-data-microservices

Package Overview
Dependencies
55
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @blackbox-vision/ra-data-microservices

React Admin data provider with support for microservices


Version published
Maintainers
2
Install size
39.8 kB
Created

Readme

Source

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.

Keywords

FAQs

Last updated on 22 May 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc