1.1.8 • Published 4 years ago

@neoxia-js/ra-data-nestjsx-crud v1.1.8

Weekly downloads
7
License
MIT
Repository
github
Last release
4 years ago

Nest.js API Data Provider For React-Admin

ra-data-nestjsx-crud is a fork of @FusionWorks/ra-data-nest-crud.

ra-data-nestjsx-crud is a data-provider for react-admin, that has been designed to make easier communication between a frontend application built with react-admin, and a backend application built with nestjs framework and nestjsx/crud.

Install

Using npm: npm i ra-data-nestjsx-crud

Using yarn: yarn add ra-data-nestjsx-crud

Usage

// in app.jsx file

import React from 'react';
import { Admin, Resource, ShowGuesser } from 'react-admin';
import crudProvider from 'ra-data-nestjsx-crud'
import { UsersList, UserCreate, UserEdit } from './Users'

const dataProvider = crudProvider('http://localhost:3000');
const App = () => (
  <Admin dataProvider={dataProvider}>
    <Resource name="users" list={UsersList} create={UserCreate} edit={UserEdit} show={ShowGuesser} />
  </Admin>
);
export default App;