Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.js

import React from 'react'
import { Fetch } from 'croods'

export default props => (
response.data.message}
render={list => (


Hello Beagles!



    {list.map((item, index) => (

  • {Beagle

  • ))}


)}
/>
)
```

[Check out the docs](https://croods.netlify.com) to understand more about it!