mallika2011 / Mega-Mart

A web app built using MERN for bulk purchases for vendors and customers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mega Mart

A web app built using MERN for bulk orders for vendors and customers.

Setup and Running

  • Start the mongodb server
    sudo mongod
  • Get the backend sever running
    cd backend
    npm install
    npm install express
    nodemon sever.js
  • Start the front end
    cd ../frontend
    npm install
    npm start
  • Start the mongodb database (optional- used to view the databse)
    mongo

CAUTION : If the ports are already being used by some other processes, they must be killed before running the above script

    ps aux | grep <node/mongo>
    kill -9 <PID>

Your App should be up and running on http://localhost:3000/

Features (Summary)

  • Supports two types of users - customers and vendors

Vendors

  • Add Products
  • Remove Products
  • Dispatch Products
  • View Ratings and Reviews of their products

Customer

  • View all avaialable products
  • Search / Sort products
  • Add products to cart
  • View Status of orders
  • Edit exisiting orders
  • Rate and Review products as well as vendors

About

A web app built using MERN for bulk purchases for vendors and customers


Languages

Language:JavaScript 96.4%Language:HTML 2.4%Language:CSS 1.3%