Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seasonedcc/croods
REST data layer abstraction library
https://github.com/seasonedcc/croods
Last synced: about 1 month ago
JSON representation
REST data layer abstraction library
- Host: GitHub
- URL: https://github.com/seasonedcc/croods
- Owner: seasonedcc
- Created: 2019-04-11T16:11:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T04:10:02.000Z (almost 2 years ago)
- Last Synced: 2024-05-11T21:02:06.935Z (7 months ago)
- Language: JavaScript
- Homepage: https://croods.netlify.com
- Size: 6.21 MB
- Stars: 8
- Watchers: 22
- Forks: 1
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Croods
Croods is a library that abstracts the REST data layer of your back-end providing you a simple API to integrate it with react applications. A simple "Hello world" would look like this:
## Install
```bash
yarn add croods react react-dom lodash axios
```## Usage
```js
// src/App.jsimport React from 'react'
import { Fetch } from 'croods'export default props => (
response.data.message}
render={list => (
Hello Beagles!
{list.map((item, index) => (
))}
)}
/>
)
```[Check out the docs](https://croods.netlify.com) to understand more about it!