Skip to content

Nakama's is an online store for one-piece premium merchandise.

Notifications You must be signed in to change notification settings

Endabelyu/nakama-general

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

Nakama'S

Nakama'S is an online store for one-piece products merchandise

Table of Contents:

Links

Inspirations:

Features

  • Home page
  • Product page
    • Image
    • SKU (stock keeping unit)
    • Name
    • Price
    • Description
    • Add to cart form: quantity input & add to cart button
  • Shopping cart page
    • Product items to buy
      • Image, name, price, quantity, total (price x quantity)
      • Remove item
    • Link: continue shopping, go to products catalogue
    • Link: checkout
  • Checkout page
    • Order summary
      • Product items to buy
      • Grand total of all product items to buy
  • Place order / transaction is being processed

UI Designs

Home Page

Entity Relationship Diagram (ERD)

ERD

REST API Endpoints

Endpoint HTTP Description
/products GET Get all products
/products/:id GET Get product by id
/products/seed POST Seed all initial products
/products POST Add new product
/products DELETE Delete all products
/products/:id DELETE Delete product by id
/products/:id PUT Update product by id

Product

{
  "id": "abc123",
  "name": "Ace Neclacke",
  "price": 120000,
  "slug": "Ace-necklace",
  "imageUrl": "http://image.com/ace-necklace",
  "description": "Favourite necklace of Portgas D. Ace",
  "category": "necklace",
  "stock": 5,
  "createdAt": "23-11-2023",
  "updatedAt": "26-12-2023"
}

Add New Product

Request Body:

{
  "name": "Ace Neclacke",
  "price": 120000,
  "slug": "Ace-necklace",
  "imageUrl": "http://image.com/ace-necklace",
  "description": "Favourite necklace of Portgas D. Ace",
  "category": "necklace",
  "stock": 5
}

Response Body:

{
  "name": "Ace Neclacke",
  "price": 120000,
  "slug": "Ace-necklace",
  "imageUrl": "http://image.com/ace-necklace",
  "description": "Favourite necklace of Portgas D. Ace",
  "category": "necklace",
  "stock": 5
}

About

Nakama's is an online store for one-piece premium merchandise.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published