A full-stack e-commerce platform built using MERN stack (MongoDB, Express, React, Node.js), The platform allows users to register, log in, add products to their cart, and place orders.
- User authentication (Login/Register)
- Authenticated users can add products to their cart.
- Authenticated users can place orders for products in their cart.
- Orders include product details, total price, shipping address, payment status, and order status.
- WT-based authentication for secure access.
- Passwords are securely hashed using bcrypt
- Optimized API responses for quick access.
- Toast notifications for user interactions
- Mobile-friendly UI
-
Products & Product details
Products.jsx ProductDetails.jsx -
Signup & Placed Pages
Signup.jsx Placed.jsx
- email: [email protected]
- password: 123456
- React.js for building the user interface.
- TailwindCSS for styling
- Axios for API requests
- React Toastify for notifications
- Node.js with Express.js
- MongoDB with Mongoose
- JSON Web Token (JWT) for authentication
- bcrypt.js for password hashing
└── src/
├── App.css
├── App.jsx
├── index.css
├── main.jsx
├── assets/
├── components/
│ ├── Footer.jsx
│ └── Navbar.jsx
├── pages/
│ ├── Login.jsx
| ├── Checkout.jsx
│ ├── Signup.jsx
│ ├── Products.jsx
│ ├── ProductDetails.jsx
│ └── Placed.jsx
├── routes/
│ ├── ProtectedRoute.jsx
│ └── AllRoutes.jsx
└── api/
└── apis.js
└── src/
├── index.js
├── config/
│ └── database.js
├── middlewares/
│ └── auth.middleware.js
├── models/
│ ├── cart.model.js
| ├── product.model.js
| ├── order.model.js
│ └── user.model.js
└── routes/
├── cart.routes.js
├── product.routes.js
|── order.routes.js
└── user.routes.js
-
Clone the repository:
git clone https://github.com/VrushabhVeer/edgistify-frontend.git cd edgistify-frontend npm install
git clone https://github.com/VrushabhVeer/edgistify-backend.git cd edgistify-backend npm install
-
Set up .env files in backend (server):
MONGO_URL=your_mongodb_connection JWT_SECRET=your_secret_key PORT=your_port
Run the backend server:
cd edgistify-backend npm run dev
Run the frontend server:
cd edgistify-frontend npm run dev Open http://localhost:5173 in your browser.
Auth Routes:
POST /user/signup - Register a new user
POST /user/login - Login user
Product Routes:
GET /products - Get All Products
GET /products/:id - Get Single Product
POST /cart/add - Add to Cart
GET /cart - Get Cart Items
DELETE /cart/:id - Delete Cart Item
POST /order/place - Create a Order
GET /order - Get Order
- Product Search and Filtering 🔍
- Payment Gateway Integration 💳
- Order Tracking 📦
- Admin Dashboard for managing products and orders 📊
- Email Notifications for order updates 📧