Relational Database Design built with NodeJS, ExpressJS, HTML/ CSS, Bootstrap, PostgreSQL implementation
Screenshots of the application:
Download or git clone the project
npm install
unzip Data/Demo\ Data.zip -d Data
Ensure PostgreSQL and PG Admin are installed and running Create a new database named "BuzzBuy Data Warehouse" Use PG Admin to run add_data.sql(remember to change path name and unzip the data files in Demo Data.zip)
const db = new pg.Client({
user: "postgres",
host: "localhost",
database: "BuzzBuy Data Warehouse",
password: "0000",
port: 5432,
});
nodemon index.js


