{"id":25593956,"url":"https://github.com/yogesh16singh/careerapp","last_synced_at":"2026-04-10T00:06:09.997Z","repository":{"id":274647331,"uuid":"923564785","full_name":"yogesh16singh/careerapp","owner":"yogesh16singh","description":"Career Counselling App build using React Native Expo and backend in Express Js","archived":false,"fork":false,"pushed_at":"2025-02-20T12:52:57.000Z","size":19466,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-20T13:39:15.056Z","etag":null,"topics":["expo","expressjs","nodejs","notifications","socket-io"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/yogesh16singh.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}},"created_at":"2025-01-28T13:31:04.000Z","updated_at":"2025-02-20T12:59:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"b845a613-8428-43c1-8521-f5043fe28394","html_url":"https://github.com/yogesh16singh/careerapp","commit_stats":null,"previous_names":["yogesh16singh/careerapp"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogesh16singh%2Fcareerapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogesh16singh%2Fcareerapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogesh16singh%2Fcareerapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogesh16singh%2Fcareerapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yogesh16singh","download_url":"https://codeload.github.com/yogesh16singh/careerapp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239994838,"owners_count":19730918,"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":["expo","expressjs","nodejs","notifications","socket-io"],"created_at":"2025-02-21T10:22:36.704Z","updated_at":"2025-12-30T19:41:36.556Z","avatar_url":"https://github.com/yogesh16singh.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Student Counseling Platform\n\nA full-stack student counseling platform that enables students to connect with counselors via real-time chat. The platform includes AI-powered career suggestions, notifications.\n\n## Features\n\n✅ **User Authentication** – Secure login/signup using JWT authentication.\n✅ **Real-time Chat** – Students can chat with counselors using Socket.io.\n✅ **AI Career Suggestion** – AI-powered chat to suggest career paths.\n✅ **Push Notifications** – Counselors get notified when students initiate a chat.\n✅ **Payment System** – Integrated payment gateway for session booking.\n✅ **Courses \u0026 Layout Management** – Dynamic courses and layout configuration.\n\n## Technologies Used\n\n### **Frontend (React Native - Expo)**\n- React Native\n- Expo\n- React Navigation\n- Typescript\n- Axios (API Requests)\n- Expo Notification (Push Notifications)\n- Socket.io-client (Real-time Chat)\n\n### **Backend (Node.js \u0026 Express)**\n- Express.js\n- MongoDB \u0026 Mongoose\n- JWT Authentication\n- Socket.io (WebSockets for chat)\n- Redis (For caching and performance optimization)\n- K6 \u0026 Grafana (API Load Testing \u0026 Monitoring)\n\n## Installation\n\n### **1️⃣ Backend Setup**\n```sh\n# Clone the repository\ngit clone https://github.com/yogesh16singh/careerapp.git\ncd server\n\n# Install dependencies\nnpm install\n\n# Create a .env file and configure environment variables\ncp .env.example .env\n\n# Start the backend server\nnpm run dev\n```\n\n### **2️⃣ Frontend Setup**\n```sh\ncd client\n\n# Install dependencies\nnpm install\n\n# Start Expo development server\nnpx expo start\n```\n\n## Environment Variables\n\nCreate a `.env` file in the backend directory and define the following variables:\n```env\nPORT=8000\nDB_URL=your_mongodb_uri\nJWT_SECRET=your_jwt_secret\nCLOUD_NAME=your_cloudinary_name\nCLOUD_API_KEY=your_cloudinary_api_key\nCLOUD_SECRET_KEY=your_cloudinary_secret_key\nREDIS_URL=your_redis_url\nSMTP_HOST = smpt.gmail.com\nSMTP_PORT = 465\nSMTP_SERVICE = gmail\nSMTP_MAIL=your mail Id\nSMTP_PASSWORD=your mail password\n\nSTRIPE_PUBLISHABLE_KEY =your stripe key\nSTRIPE_SECRET_KEY = your stripe secret key\n\n\n```\n\n## API Documentation\n\n### **1️⃣ User Authentication**\n- `POST /api/v1/user/register` → Register a new user\n- `POST /api/v1/user/login` → Login user \u0026 get JWT\n- `GET /api/v1/user/profile` → Get user details\n\n### **2️⃣ Chat System**\n- `GET /api/v1/chat/counselors/:userId` → Get previous counselors a student has chatted with.\n- `GET /api/v1/chat/students/:userId` → Get previous students a counselor has chatted with.\n- `POST /api/v1/chat/send` → Send a message.\n- `GET /api/v1/chat/messages/:conversationId` → Get all messages in a chat.\n\n### **3️⃣ Notifications**\n- `POST /api/v1/notifications/send` → Send push notification.\n- `GET /api/v1/notifications` → Get previous notifications.\n\n### **4️⃣ AI Career Suggestion**\n- `POST /api/v1/ai/suggest` → Get AI-generated career suggestions.\n\n## Socket.io Events\n\n### **Events Sent from Client**\n- `joinRoom` → Join a chat room\n- `sendMessage` → Send a message to a counselor\n\n### **Events Received from Server**\n- `messageReceived` → Listen for new messages\n- `notification` → Receive new notifications\n\n## Testing\nWe use **K6** for load testing and **Grafana** for performance monitoring.\n```sh\nnpm run test\n```\n\n## License\nThis project is licensed under the MIT License.\n\n---\n\n💡 **Contributors:** Yogesh Singh\n🚀 **For queries, contact:** ys1997642@gmail.com\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyogesh16singh%2Fcareerapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyogesh16singh%2Fcareerapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyogesh16singh%2Fcareerapp/lists"}