https://github.com/ctrachte/contact-list
Contact list react app practice for Udacity's GWG FEND (pt2)
https://github.com/ctrachte/contact-list
Last synced: 8 months ago
JSON representation
Contact list react app practice for Udacity's GWG FEND (pt2)
- Host: GitHub
- URL: https://github.com/ctrachte/contact-list
- Owner: ctrachte
- Created: 2018-11-12T21:45:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-13T21:24:15.000Z (over 7 years ago)
- Last Synced: 2025-01-16T13:20:36.610Z (over 1 year ago)
- Language: JavaScript
- Size: 474 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Contact List app
A simple react app (in progress) to add, search and remove contacts.
## Getting started
There are two working pieces to this project:
### The Backend Server
- To run this project you will first need to download and run the backend server.
- The server is just a simple Node/Express app. The repo for the project is at https://github.com/udacity/reactnd-contacts-server. All you need to do is:
- clone the project with `git clone https://github.com/udacity/reactnd-contacts-server.git`
- install the project dependencies with `npm install`
- start the server with node server.js
### The Frontend Server
- First clone this repository `git clone https://github.com/ctrachte/Contact-List.git`
- in the directory you cloned to, type the command `npm install` to get all dependencies
- Then type `npm run start` or `npm start` depending on your node/npm configuration