This is a React and Redux app that manages a users contacts. A user can view their list of contacts, view/edit/delete a specific contact, and add new contacts.
Jest
Enzyme
Redux Promise
Redux Thunk
JSON Server
Axios
Babel
Lodash
React-Scripts
Redux Form
First install the JSON server dependency as this will be our API for this app.
Then checkout the repo and install it's dependencies.
Finally, spin up the local Contact API server and the webserver for the app itself.
>npm install -g json-server
> git clone https://github.com/Exponent500/Simple-Contacts-App.git
> cd Simple-Contacts-App
> npm install
> json-server --watch contacts.json
npm start