Welcome to QuikBazaar, a feature-rich e-commerce platform that seamlessly integrates a robust React.js front end with a powerful Spring Boot backend, backed by MySQL for data storage. This full-stack solution exemplifies my expertise in creating dynamic and scalable web applications.
- Developer: Saurabh Maurya
- Website: QuikBazaar
- Email: saurabhmaurya.in@gmail.com
- License: OPEN License
For additional information, refer to the external documentation.
http://quikbazaar.up.railway.app - Generated server URL.
-
Interactive User Experience:
- Engaging product pages with real-time updates and smooth transitions.
- Intuitive navigation and user-friendly design for optimal user experience.
-
Efficient State Management:
- Leveraging React.js for efficient state management, ensuring dynamic and seamless interactions.
-
Responsive Design:
- A layout that adapts flawlessly to various devices, providing a consistent experience on desktops, tablets, and mobiles.
-
RESTful API:
- Building a RESTful API to facilitate communication between the frontend and backend.
- Efficient handling of HTTP requests and responses for a smooth user experience.
-
User Authentication and Authorization:
- Implementing secure user authentication and authorization mechanisms to protect user data and ensure a safe environment.
-
Data Processing and Logic:
- Utilizing Spring Boot for efficient data processing, business logic implementation, and seamless integration with the database.
-
Relational Data Management:
- Designing a well-structured relational database schema to manage product information, user data, and order details.
-
Transaction Management:
- Ensuring the integrity of transactions, allowing users to safely place and track orders.
-
Scalability and Performance:
- Optimizing database queries and indexing for improved performance as the user base grows.
-
Product Catalog:
- Comprehensive catalog with categorization for easy navigation.
- Detailed product pages with high-quality images, descriptions, and user reviews.
-
Search and Filters:
- Robust search functionality with filters for refining search results.
-
Shopping Cart:
- Seamless cart management with real-time updates on order summary.
-
User Accounts:
- Secure user authentication and personalized accounts for order history and preferences.
-
Checkout Process:
- Streamlined checkout with multiple payment options and order tracking.
-
Admin Dashboard:
- Admin panel for managing products, user accounts, and monitoring order processing.
- Analytics and reporting tools for gaining insights into user behavior and sales trends.
- Frontend: React.js, JavaScript, CSS
- Backend: Spring Boot (Java)
- Database: MySQL
- API Communication: RESTful API
Explore the QuikBazaar project to witness the seamless integration of React.js with Spring Boot, providing a comprehensive e-commerce solution with a rich set of features. Dive into the codebase to understand the intricacies of full-stack development and feel free to reach out with any questions or feedback!
Welcome to the QuikBazaar API documentation, providing insights into the precision and innovation of Saurabh Maurya's expertly crafted E-commerce backend code. QuikBazaar offers a dynamic and reliable online shopping experience powered by Spring Boot, reshaping the future of E-commerce technology.
- Authentication
- User Operations
- Product Operations
- Order Operations
- Category Operations
- Cart Operations
- Payment Operations
- Endpoint:
/auth/login
- Method:
POST
- Request Body:
{ "email": "user@example.com", "password": "password123" }
- Response:
{ "jwtToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "user": { // UserDto details } }
- Security: Bearer Token (
JWT
)
- Endpoint:
/auth/google
- Method:
POST
- Request Body:
{ // Google Sign-In response }
- Response:
{ "jwtToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "user": { // UserDto details } }
- Security: Bearer Token (
JWT
)
- Endpoint:
/users/{userId}
- Method:
GET
- Parameters:
{userId}
: User ID (String)
- Response:
{ // UserDto details }
- Endpoint:
/users/{userId}
- Method:
PUT
- Parameters:
{userId}
: User ID (String)
- Request Body:
{ // UserDto details }
- Response:
{ // Updated UserDto details }
- Security: Bearer Token (
JWT
)
- Endpoint:
/users/{userId}
- Method:
DELETE
- Parameters:
{userId}
: User ID (String)
- Response:
{ "message": "User deleted successfully", "success": true }
- Security: Bearer Token (
JWT
)
- Endpoint:
/users
- Method:
GET
- Response:
{ // List of UserDto }
- Security: Bearer Token (
JWT
)
- Endpoint:
/users
- Method:
POST
- Request Body:
{ // UserDto details }
- Response:
{ // UserDto details of the created user }
- Security: Bearer Token (
JWT
)
- Endpoint:
/users/{userId}/image
- Method:
GET
- Parameters:
{userId}
: User ID (String)
- Response:
- User image (Binary)
- Endpoint:
/users/{userId}/image
- Method:
POST
- Parameters:
{userId}
: User ID (String)
- Request Body:
- Image file (multipart/form-data)
- Response:
{ "message": "Image uploaded successfully", "success": true }
- Security: Bearer Token (
JWT
)
- Endpoint:
/users/search
- Method:
POST
- Request Body:
{ // Search criteria }
- Response:
{ // List of UserDto matching the search criteria }
- Security: Bearer Token (
JWT
)
- Endpoint:
/users/email/{email}
- Method:
GET
- Parameters:
{email}
: User email (String)
- Response:
{ // UserDto details }
- Endpoint:
/users/me
- Method:
GET
- Response:
{ // UserDto details }
- Security: Bearer Token (
JWT
)
- Endpoint:
/products/{productId}
- Method:
GET
- Parameters:
{productId}
: Product ID (String)
- Response:
{ // ProductDto details }
- Endpoint:
/products/{productId}
- Method:
PUT
- Parameters:
{productId}
: Product ID (String)
- Request Body:
{ // ProductDto details }
- Response:
{ // Updated ProductDto details }
- Security: Bearer Token (
JWT
)
- Endpoint:
/products/{productId}
- Method:
DELETE
- Parameters:
{productId}
: Product ID (String)
- Response:
{ "message": "Product deleted successfully", "success": true }
- Security: Bearer Token (
JWT
)
- Endpoint:
/products
- Method:
GET
- Response:
{ // List of ProductDto }
- Security: Bearer Token (
JWT
)
- Endpoint:
/products
- Method:
POST
- Request Body:
{ // ProductDto details }
- Response:
{ // ProductDto details of the created product }
- Security: Bearer Token (
JWT
)
- Endpoint:
/products/{productId}/image
- Method:
GET
- Parameters:
{productId}
: Product ID (String)
- Response:
- Product image (Binary)
- Endpoint:
/products/{productId}/image
- Method:
POST
- Parameters:
{productId}
: Product ID (String)
- Request Body:
- Image file (multipart/form-data)
- Response:
{ "message": "Image uploaded successfully", "success": true }
- Security: Bearer Token (
JWT
)
- Endpoint:
/products/search
- Method:
POST
- Request Body:
{ // Search criteria }
- Response:
{ // List of ProductDto matching the search criteria }
- Security: Bearer Token (
JWT
)
- Endpoint:
/products/live
- Method:
GET
- Response:
{ // List of live ProductDto }
- Security: Bearer Token (
JWT
)
- Endpoint:
/orders/{orderId}
- Method:
PUT
- Parameters:
{orderId}
: Order ID (String)
- Request Body:
{ // OrderDto details }
- Response:
{ // Updated OrderDto details }
- Security: Bearer Token (
JWT
)
- Endpoint:
/orders/{orderId}
- Method:
DELETE
- Parameters:
{orderId}
: Order ID (String)
- Response:
{ "message": "Order removed successfully", "success": true }
- Security: Bearer Token (
JWT
)
- Endpoint:
/orders
- Method:
GET
- Response:
{ // List of OrderDto }
- Security: Bearer Token (
JWT
)
- Endpoint:
/orders
- Method:
POST
- Request Body:
{ // OrderDto details }
- Response:
{ // OrderDto details of the created order }
- Security: Bearer Token (
JWT
)
- Endpoint:
/orders/user/{userId}
- Method:
GET
- Parameters:
{userId}
: User ID (String)
- Response:
{ // List of OrderDto for the user }
- Endpoint:
/categories/{categoryId}
- Method:
GET
- Parameters:
{categoryId}
: Category ID (String)
- Response:
{ // CategoryDto details }
- Endpoint:
/categories
- Method:
GET
- Response:
{ // List of CategoryDto }
- Endpoint:
/categories
- Method:
POST
- Request Body:
{ // CategoryDto details }
- Response:
{ // CategoryDto details of the created category }
- Security: Bearer Token (
JWT
)
- Endpoint:
/categories/{categoryId}
- Method:
PUT
- Parameters:
{categoryId}
: Category ID (String)
- Request Body:
{ // CategoryDto details }
- Response:
{ // Updated CategoryDto details }
- Security: Bearer Token (
JWT
)
- Endpoint:
/categories/{categoryId}
- Method:
DELETE
- Parameters:
{categoryId}
: Category ID (String)
- Response:
{ "message": "Category deleted successfully", "success": true }
- Security: Bearer Token (
JWT
)
This project was bootstrapped with Create React App.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject
, you can't go back!
If you aren't satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify