{"id":29024671,"url":"https://github.com/hossahin/helpinghub-project-server","last_synced_at":"2026-05-04T10:34:28.449Z","repository":{"id":301152479,"uuid":"1008144334","full_name":"Hossahin/HelpingHub-Project-Server","owner":"Hossahin","description":"HelpingHub Server is a Node.js backend providing RESTful APIs for managing volunteer posts, user details, and authentication. Using Express, MongoDB, and Firebase Admin SDK, it enables secure CRUD operations to support a volunteer management platform.","archived":false,"fork":false,"pushed_at":"2025-06-25T11:20:33.000Z","size":36,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-25T12:27:21.094Z","etag":null,"topics":["api","backend","cors","crud","dotenv","express","javascript","mongodb","nodejs","rest-api","volunteer-management"],"latest_commit_sha":null,"homepage":"https://server-side-taupe-mu.vercel.app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Hossahin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-25T05:20:22.000Z","updated_at":"2025-06-25T11:20:36.000Z","dependencies_parsed_at":"2025-06-25T12:38:47.768Z","dependency_job_id":null,"html_url":"https://github.com/Hossahin/HelpingHub-Project-Server","commit_stats":null,"previous_names":["hossahin/helpinghub-project-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Hossahin/HelpingHub-Project-Server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hossahin%2FHelpingHub-Project-Server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hossahin%2FHelpingHub-Project-Server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hossahin%2FHelpingHub-Project-Server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hossahin%2FHelpingHub-Project-Server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hossahin","download_url":"https://codeload.github.com/Hossahin/HelpingHub-Project-Server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hossahin%2FHelpingHub-Project-Server/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261998013,"owners_count":23242318,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","backend","cors","crud","dotenv","express","javascript","mongodb","nodejs","rest-api","volunteer-management"],"created_at":"2025-06-26T04:18:35.700Z","updated_at":"2026-05-04T10:34:28.400Z","avatar_url":"https://github.com/Hossahin.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HelpingHub Server\n\n## Overview\n\nThis backend server supports HelpingHub, a volunteer management platform. It provides RESTful APIs for managing volunteer posts, user details, and authentication, enabling full CRUD operations with secure access.\n\n## Tech Stack\n\n- Node.js with Express  \n- MongoDB  \n- Firebase Admin SDK  \n- CORS  \n- dotenv  \n\n## API Endpoints\n\n### Volunteer Posts\n\n- `GET /AllVolunteerNeedposts`  \n  Retrieve all volunteer need posts.\n\n- `GET /AllVolunteerNeedposts/Search`  \n  Search volunteer posts by query.\n\n- `GET /AllVolunteerNeedposts/volunteerneedpostdetailspage/:id`  \n  Get details of a volunteer post by ID.\n\n- `GET /AddVolunteerNeedPost/featuresdete`  \n  Get featured data related to volunteer posts.\n\n- `GET /ManageMyPosts/:email`  \n  Get all posts created by a user (by email).\n\n- `POST /AddVolunteerNeedPost`  \n  Create a new volunteer need post.\n\n- `PUT /Myvolunteerneedposts/:id`  \n  Full update of a volunteer post by ID.\n\n- `PATCH /AllVolunteerNeedposts/:id`  \n  Partial update of a volunteer post by ID.\n\n- `DELETE /Myvolunteerneedpost/:id`  \n  Delete a volunteer post by ID.\n\n### Volunteer User Details\n\n- `GET /VolunteerDetails/:email`  \n  Get volunteer details by user email.\n\n- `POST /VolunteerDetails`  \n  Add volunteer details.\n\n- `DELETE /VolunteerDetails/:id`  \n  Delete volunteer detail by ID.\n\n### Authentication\n\n- `POST /signup`  \n  Register a new user.\n\n\n### 🛠️ Local Setup Guide\n\nFollow these steps to run the project locally:\n\n---\n\n### 1️⃣ **Clone the Repository**\n\n```bash\nhttps://github.com/Hossahin/HelpingHub-Project-Server.git\n```\n\n---\n\n### 2️⃣ **Navigate to the Project Directory**\n\n```bash\ncd HelpingHub-Project-Server\n```\n\n---\n\n### 3️⃣ **Install Dependencies**\n\n```bash\nnpm install\n```\n\n---\n\n### 4️⃣ **Set Up Environment Variables**\n\n\u003e Create a `.env` file in the root directory and add the following:\n\n```env\nDB_USER=your_database_username\nDB_PASS=your_database_password\n\nFIREBASE_SERVICE_KEY=your_firebase_key //base64\n```\n\n---\n\n### 5️⃣ **Start the server with:**\n\n```bash\nnodemon index.js\n```\n\n---\n\n### 6️⃣ **Open the App in Browser**\n\nVisit the local server:\n\n\u003e 🌐 [http://localhost:3000](http://localhost:3000)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhossahin%2Fhelpinghub-project-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhossahin%2Fhelpinghub-project-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhossahin%2Fhelpinghub-project-server/lists"}