Date

Feb 11, 2019

Category

Coding

Reading Time

2 Min

University of Toronto | Shopping Cart Database

This was a individual project from my coding bootcamp in 2018. This application implements a simple command line based storefront using the npm inquirer package and the MySQL database backend together with the npm mysql package.

Background

This was a individual project from my coding bootcamp in 2018. This application implements a simple command line based storefront using the npm inquirer package and the MySQL database backend together with the npm mysql package.

Source code: https://github.com/sherriejudy/Bamazon

Demo

Customer Interface

The customer interface allows the user to view the current inventory of store items: item IDs, descriptions, department in which the item is located and price. The user is then able to purchase one of the existing items by entering the item ID and the desired quantity. If the selected quantity is currently in stock, the user’s order is fulfilled, displaying the total purchase price and updating the store database. If the desired quantity is not available, the user is prompted to modify their order.

Built With

* MySQl
* Node.JS
* JavaScript