JSPM

ra-loopback-try

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q23408F
  • License ISC

loopback style REST client for react-admin

Package Exports

  • ra-loopback-try

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ra-loopback-try) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Loopback-style REST Client for react-admin

Loopback-style REST Client for react-admin, the frontend framework for building admin applications on top of REST services.

Prerequisite

  • Your loopback server must response X-Total-Count header when querying list. Please use loopback3-xTotalCount on your server end.

How to use

  1. yarn add ra-loopback-try
  2. On your App.js, add this:
import loopbackApiClient from 'ra-loopback';

...

    <Admin restClient={loopbackApiClient('http://my.api.url/api')} ...>
  1. If you want this module handle authentication, add this:
import loopbackApiClient, {authClient} from 'ra-loopback';

...

    <Admin restClient={loopbackApiClient('http://my.api.url/api')} authClient={authClient('http://my.api.url/api/users/login')} ...>

License

This module is licensed under the MIT Licence.