Skip to content

Commit 9d6e51b

Browse files
committed
updated readme
1 parent 20d1637 commit 9d6e51b

6 files changed

+5
-3
lines changed

GitHub-Mark-32px.png

-1.67 KB
Binary file not shown.

LI-In-Bug.png

-8.18 KB
Binary file not shown.

MBwhitendblack.png

-2.23 KB
Binary file not shown.

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,8 @@ node bamazoncustomer.js
2424

2525
## Demo
2626
![app screenshot](SQLInventoryLoggerGIF.gif)
27+
28+
29+
### Built With
30+
This app runs on Node.js.
31+
Upon start creates a SQL db, afterwhich is updated by users selections.

TESTER.js

-1
This file was deleted.

bamazonCustomer.js

-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ function inventoryList(){
2121
connection.query("SELECT item_id, product_name, department_name, price, stock_quantity FROM products", (err, res) => {
2222
if(err) throw err;
2323
console.table(res);
24-
// connection.end();
2524
shopping(res);
2625
})
2726
};
@@ -65,7 +64,6 @@ function productSelection(inventory){
6564
name: "choice",
6665
message: "Please enter Id number of the item you'd like to purchase :",
6766
validate: (val)=> {
68-
// console.log("\n"+val)
6967
return !isNaN(val);
7068
}
7169
}

0 commit comments

Comments
 (0)