Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 1020 Bytes

README.md

File metadata and controls

44 lines (26 loc) · 1020 Bytes

Mountain America Coding Callenge

Using these projects as a base, fork this repo, and write an Express API and React app to display a list of Animals.

Some placeholder animal data is provided in /server/data.js

const data = require('./data');


The server was generated using express-generator

Install the server

> cd server 
> npm install

Run the server

> npm start

http://localhost:3030


The client was generated using Create React App.

Install the client

> cd client
> npm install

Run the client

> npm start

http://localhost:3000


When you're finished, commit your changes and open a PR into the original repo (https://github.com/MACU-Interviews/express-react-app)

Extra credit

  • Style the list
  • Add create, update, and delete functionality
  • Add a text search filter to the list