Skip to content

코밋 명륜 백엔드 스터디, MySQL + CRUD기능을 포함한 간단한 온라인 쇼핑몰을 만드는 프로젝트입니다.

Notifications You must be signed in to change notification settings

jnnkk/Comit_CRUD_OnlineShop_Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Online Shopping Mall with CRUD Functionality

Implementation Stack

  • Node.js
  • Express.js
  • HTML
  • CSS
  • ejs Template Engine
  • MySQL

MVC Pattern

Model

PRODUCT

  • ID: primary key, int
  • Name: varchar(255)
  • Price: int
  • Image URL: varchar(255)
  • Product Summary Description: text (for longer sentences)
  • Stock: int
  • Category: varchar(255)

CART

  • User ID: varchar(255)
  • Product Object ID: primary key, int
  • Product Object Name: varchar(255)
  • Product Object Price: int
  • Product Object Quantity: int

USER

  • User ID: varchar(255)
  • User Password: varchar(255)
  • User Name: varchar(255)
  • isAdmin: boolean

View

Main Page

  • It's the main page.
  • Displays product listings.
  • Shows categories.
  • Allows immediate purchase or adding products to the cart.

Admin Page

  • Visible when admin logs in.
  • Window for adding products.
  • Window for modifying and deleting products.

Product Addition Page

  • Allows adding products.
  • Image upload to be implemented.

About

코밋 명륜 백엔드 스터디, MySQL + CRUD기능을 포함한 간단한 온라인 쇼핑몰을 만드는 프로젝트입니다.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published