https://github.com/ohshajim/prodify-server
This backend server is the back-end of Prodify, single-page application designed to allow users to perform search and filtering operations on a set of products. including functionalities such as pagination, searching, categorization, sorting
https://github.com/ohshajim/prodify-server
cors expressjs mongodb nodejs
Last synced: 3 months ago
JSON representation
This backend server is the back-end of Prodify, single-page application designed to allow users to perform search and filtering operations on a set of products. including functionalities such as pagination, searching, categorization, sorting
- Host: GitHub
- URL: https://github.com/ohshajim/prodify-server
- Owner: OHshajim
- Created: 2024-08-18T09:46:55.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-18T19:42:20.000Z (almost 2 years ago)
- Last Synced: 2025-09-13T01:29:40.065Z (9 months ago)
- Topics: cors, expressjs, mongodb, nodejs
- Language: JavaScript
- Homepage: https://prodify-232d8.web.app/
- Size: 1.98 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Prodify - Backend
Live Link URL : https://prodify-232d8.web.app/
Client Side Repository Link : https://github.com/OHshajim/Prodify
## Project Overview
This backend server is the back-end of Prodify, single-page application designed to allow users to perform search and filtering operations on a set of products. The backend is responsible for handling data storage, retrieval, and API endpoints for product management, including functionalities such as pagination, searching, categorization, sorting, and authentication.
## Features
- **CRUD Operations**: Only Read operation used on this project.
- **Pagination**: Efficient loading of products with support for pagination.
- **Search**: Allows users to search products by name.
- **Categorization**: Filters products by brand name, category name, and price range.
- **Sorting**: Sorts products by price (Low to High, High to Low) and date added (Newest first).
## Technology Stack
- **Backend:** Node.js, Express.js
- **Database:** MongoDB
- **Environment Variables:** Managed with dotenv
## Installation
### Prerequisites
Ensure you have the following installed:
- Node.js
- Express.Js
- MongoDB
### Setup
1. **Clone the repository**
```bash
git clone https://github.com/OHshajim/Prodify-server.git
```
2. **Navigate to the project directory**
```bash
cd Prodify-server
```
3. **Install dependencies**
```bash
npm install express cors mongodb dotenv
```
4. **Create a .env file in the root directory with your mongodb URL:**
```bash
DB_URL = "URL"
```
5. **Run the frontend server**
```bash
node index.js
```