In this Web App, you can post a product for sale and also buy a product.
- Please Visit B2Bridge !
-
🛒 B2B Wholesale Marketplace
Connects manufacturers, brands, and wholesalers with retailers and bulk buyers in a streamlined online selling platform. -
🔍 Smart Product Filtering
Easily filter products by category, brand, rating, price, and more to quickly find exactly what you're looking for. -
🔐 JWT Authentication System
All private routes are protected using JSON Web Tokens (JWT), with support for email/password and Google sign-in. -
👥 User Role Detection in Navbar
Dynamically shows or hides options in the navigation bar based on whether the user is logged in or not. -
📦 View Product Details with Order Modal
See full product specifications and open a modal to place orders with quantity selection and minimum validation. -
📉 Real-Time Inventory Update
Product quantities are instantly updated in MongoDB using$incduring orders or when products are removed from cart. -
➕ Add New Products Easily
Authenticated users can add detailed product listings including image, price, brand, category, and quantity. -
✏️ Edit Products (Any User)
Any logged-in user can edit any product, updating fields like category, rating, price, description, and more. -
🛒 Cart with Stock Reversal
Items removed from the cart will restore stock to the product in the database using secure MongoDB updates. -
🔄 Card/Table View Toggle for Products
Users can toggle between a grid-based card view and a table view to browse all listed products more efficiently. -
🎯 Show Products with High MOQ
A special filter shows only products with a minimum selling quantity over 100, ideal for large-scale buyers. -
📱 Responsive UI Design
Built with Tailwind CSS and DaisyUI to ensure optimal experience on both mobile and desktop devices. -
🧠 Dynamic Page Titles
Each page dynamically updates the browser tab title to reflect the current view, improving navigation and SEO. -
⚠️ Custom 404 Error Page
Clean and branded error page when users access undefined routes, with an option to return to the home page. -
🔔 SweetAlert & Toast Notifications
Provides user feedback for key actions like login, logout, add/edit product, and form errors using alert/toast libraries.
- Use node.js for server-side scripting and building web applications.
- Uses express to build web applications and APIs easily with routing, middleware, and request handling.
- Uses nodemon for automatically restarts a Node.js application when file changes are detected during development.
- Uses cors for enabling controlled access to resources from different origins in web applications.
- Uses dotenv environment variables from a .env file into process.env for secure configuration management.
- Uses MongoDB for storing, querying, and managing large volumes of flexible, JSON-like data in web and mobile applications.
- Uses MongoDB Atlas for hosting, managing, and scaling MongoDB databases in the cloud securely.
- Uses cookie-parser in Express to parse and manage cookies from incoming client requests easily.
- Uses JWT to securely transmit user authentication data between client and server in web applications.
- Uses Vercel for deploying, hosting, and scaling frontend web applications with speed, simplicity, and automation.
Follow the steps below to set up the B2Bridge application locally:
git clone https://github.com/Arman3747/B2Bridge-client.git
git clone https://github.com/Arman3747/B2Bridge-server.gitcd B2Bridge-client
npm installCreate a .env.local file in the root of the client folder and add the following:
VITE_apiKey=your_firebase_key
VITE_authDomain=your_auth_domain
VITE_projectId=your_project_id
VITE_storageBucket=your_storage_bucket
VITE_messagingSenderId=your_sender_id
VITE_appId=your_app_id
Then start the client:
npm run devcd B2Bridge-server
npm installCreate a .env file in the root of the server folder and add the following:
btobridge_DB_USER=your_mongodb_admin_username
btobridge_DB_PASS=your_mongodb_admin_password
JWT_ACCESS_SECRET=your_jwt_access_token
Then start the server:
nodemon index.js