Vehicle Database Manager is a React app that uses my online REST API to pull from a personal MongoDB database to populate and manage a list of cars.
- A responsive one page layout built with React
- Database management functionality via custom web API
- Database cloud storage via MongoDB
Below are instructions on how to try out this React app for yourself.
You will need Git and Node.js to pull from this repository and run the server on your own machine.
First, go to the folder or workspace that you want to clone the repository into:
cd C:\myprojects
Where myprojects is where you want to place the repository. Next, issue the following commands:
# Clone this repository
git clone https://github.com/rjayroso/react-vehicle-database-manager.git
# Go into the repository
cd react-vehicle-database-manager
# Remove current origin repository
git remote remove origin
# Install dependencies using NPM
npm install
# Start development server
npm start
Once it has successfuly compiled, you can go to http://localhost:3000/ to see the development server in action.
This project is licensed under the MIT License - see the LICENSE.md file for details.
This project of mine was inspired from my web course "Web Programming for Apps and Services" of the Seneca College Software Development program.