Bamazon is a command line app that allows the user to view existing product in inventory and do various tasks depending on which file you are running.
In bamazonManager.js, the user has the ability to view the inventory, view low inventory (products with quantities less than 5), add to inventory, and add a new product.
View Inventory:
From the command line, type one of the following commands:
node bamazonCustomer.js
node bamazonManager.js
Github repo: https://github.com/beccashieh/Bamazon
If you would like to run this program on your own machine, you will need to supply your own .env file containing your database information. You will also need to run the following commands in your terminal :
npm install
npm install inquirer
npm install mysql
Rebecca Shieh