Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nacmartin/crud-api-example
- Owner: nacmartin
- Created: 2017-11-15T20:14:57.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-17T10:02:51.000Z (about 7 years ago)
- Last Synced: 2024-10-30T02:43:41.578Z (about 2 months ago)
- Language: JavaScript
- Size: 130 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
````