CONTACT LIST

A simple react task to render uses contacts list using fake mockAPI.

image
image
image

Setup

1. Clone this repo:

git clone https://github.com/AdedayoMj/simple-contact-list-rendering.git

2. Install dependencies:

Navigate to the cloned repo’s directory and run:

   yarn install
   cd web-client
   yarn install

3. Run the mock api server:

Run the command to start up server
yarn start.
Verify the json file by Open your browser and enter : localhost:3000/contacts
sample shown below:

[
{
"id": 1,
"name": "Homer Simpson",
"url": " https://vignette.wikia.nocookie.net/simpsons/images/b/bd/Homer_Simpson.png/revision/latest/scale-to-width-down/72?cb=20140126234206"
},
{
"id": 2,
"name": "Marge Simpson",
"url": " https://vignette.wikia.nocookie.net/simpsons/images/4/4d/MargeSimpson.png/revision/latest/scale-to-width-down/78?cb=20180314071936"
},
]

4. Run the development web-client:

Run the command to start up webpack
yarn start.
Open your browser and enter localhost:8081 into the address bar.
Also this will start a watch process, so you can change the source and the process will recompile and refresh the browser

Technology

  • Material Ui
  • Typescript
  • Json Server
  • Webpack

GitHub

View Github