An example CRUD application for managing blog posts. Built with React, Redux and Redux Saga on the client side. The REST API server was generated with loopback.io and uses an in-memory database at runtime (persisting the models in a flat db.json file).
git clone git@github.com:maprihoda/react-redux-crud.git
cd react-redux-crud
In terminal 1:
cd server
yarn install
In terminal 2:
cd client
yarn install
In terminal 1:
yarn start
This launches a backend API server listening at http://localhost:3001. You can browse the REST API at http://localhost:3001/explorer. To browse the API with Postman, import the server/react-redux-crud.postman_collection.json file.
In terminal 2:
yarn start
You can now view the client SPA in the browser.
Local: http://localhost:3000/
On Your Network: http://10.0.0.32:3000/
The MIT License (MIT)