Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nacmartin/crud-api-example

Example of React talking with an API in Redux and MobX
https://github.com/nacmartin/crud-api-example

Last synced: 6 days ago
JSON representation

Example of React talking with an API in Redux and MobX

Awesome Lists containing this project

README

        

# Crud Example with React

There are actually two examples included here, for comparison, one using Redux and another using MobX

To run this:

````
yarn install
````

or

````
npm install
````

Then, run the two servers (they are actually the same, but running in different ports):

````
cd server
node server-redux.js
`````

````
cd server
node server-mobx.js
`````

After this, run in the root of the project

````
npm run start
````