A Node.js & MySQL digital storefront. This is a command line Node app that mimics a beloved online retailer.
Three JavaScript files replicate the basics of a simple ecommerce engine:
-
BamazonCustomer.js
- Receives orders from customers via the command line and interfaces with mySQL to deplete stock from the store's inventory.
-
BamazonManager.js
- Mimics the basics of a warehouse management system, providing managers with a list of options to view stock and adjust inventory.
- A sample of the menu is below:
- View Products for Sale
- View Low Inventory
- Add to Inventory
- Add New Product
The JavaScript files mentioned above query a MySQL database called Bamazon
which is locally hosted on my laptop.
-
Please refer to the
schema.sql
file to see how the database was created using raw SQL queries.-
If you wish to run this app on your own machine, then please note the following commands:
- If you are new to MySQL, please set up MySQL and MySQL Workbench on your laptop and then open up to your localhost connection.
- Run
CREATE DATABASE Bamazon;
in mySQL Workbench. - Be sure to select the correct database by running the
USE Bamazon;
- Refer to the raw SQL commands under the
=== First Table ===
comment to set up theProducts
table. - Refer to the raw SQL commands under the
=== Second Table ===
comment to set up theDepartments
table.
-
If you clone this repo down to your machine, note that it has two npm dependencies!
Before running the JavaScript files mentioned above, please run npm install
in your terminal to download the prompt and mysql node packages.
Below are some screenshots that show the functionality of the app.
- Below is a demo of the
BamazonCustomer.js
file...