{"id":28283921,"url":"https://github.com/punitkumar4871/premium_chat_application","last_synced_at":"2026-01-27T05:02:41.808Z","repository":{"id":289320169,"uuid":"970867203","full_name":"punitkumar4871/Premium_Chat_Application","owner":"punitkumar4871","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-29T10:41:55.000Z","size":82,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-17T16:44:09.391Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/punitkumar4871.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-04-22T16:50:59.000Z","updated_at":"2025-05-29T10:41:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"9e9441a0-bcbe-4e38-8f0b-9b03cab947b8","html_url":"https://github.com/punitkumar4871/Premium_Chat_Application","commit_stats":null,"previous_names":["punitkumar4871/premium_chat","punitkumar4871/premium_chat_application"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/punitkumar4871/Premium_Chat_Application","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/punitkumar4871%2FPremium_Chat_Application","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/punitkumar4871%2FPremium_Chat_Application/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/punitkumar4871%2FPremium_Chat_Application/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/punitkumar4871%2FPremium_Chat_Application/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/punitkumar4871","download_url":"https://codeload.github.com/punitkumar4871/Premium_Chat_Application/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/punitkumar4871%2FPremium_Chat_Application/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28803642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T03:44:14.111Z","status":"ssl_error","status_checked_at":"2026-01-27T03:43:33.507Z","response_time":168,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2025-05-21T17:12:50.235Z","updated_at":"2026-01-27T05:02:41.803Z","avatar_url":"https://github.com/punitkumar4871.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Premium Chat\nA modern, real-time chat application with sleek dark UI, private spaces, and seamless collaboration features.\n\n## Features ✨\n\n- **Real-time messaging** with Socket.IO\n- **Private chat spaces** with member management\n- **Glossy UI** with modern design\n- **User authentication** (login/signup)\n- **Responsive design** works on all devices\n- **Message history** for each space\n\n## Technologies Used 🛠️\n\n### Frontend\n- HTML5, CSS3 (with modern Flexbox/Grid layouts)\n- JavaScript (ES6+)\n- [Socket.IO](https://socket.io/) for real-time communication\n- [Font Awesome](https://fontawesome.com/) for icons\n\n### Backend\n- Python with Flask\n- MongoDB for data storage\n- JWT for authentication\n\n## Installation \u0026 Setup ⚙️\n\n### Prerequisites\n- Python 3.8+\n- MongoDB Atlas account or local MongoDB instance\n\n### Steps\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/yourusername/premium-chat.git\n   cd premium-chat\n   ```\n\n2. Set up virtual environment:\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\n   ```\n\n3. Install dependencies:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. Set up environment variables:\n   Create a `.env` file in the root directory:\n   ```\n   MONGO_URI=your_mongodb_connection_string\n   ```\n\n5. Run the application:\n   ```bash\n   python app.py\n   ```\n\n6. Access the app at:\n   ```\n   http://localhost:5000\n   ```\n\n## Project Structure 📂\n\n```\npremium-chat/\n├── static/\n│   ├── styles.css       # Main stylesheet\n│   └── ...              # Other static assets\n├── templates/\n│   ├── index.html       # Homepage/dashboard\n│   ├── view_room.html   # Chat room interface\n│   ├── create_room.html # Space creation form\n│   ├── login.html       # Login page\n│   ├── signup.html      # Signup page\n│   └── ...              # Other templates\n├── app.py               # Flask application\n├── db.py                # Database functions\n├── user.py              # User functions\n├── requirements.txt     # Python dependencies\n└── README.md            # This file\n```\n\n## API Endpoints 🌐\n\n| Endpoint | Method | Description |\n|----------|--------|-------------|\n| `/api/rooms` | GET | Get all rooms for current user |\n| `/api/rooms` | POST | Create new room |\n| `/api/rooms/\u003croom_id\u003e` | GET | Get room details |\n| `/api/rooms/\u003croom_id\u003e/messages` | GET | Get room message history |\n| `/api/rooms/\u003croom_id\u003e/members` | GET | Get room members |\n\n## Socket.IO Events 📡\n\n| Event | Direction | Description |\n|-------|-----------|-------------|\n| `join_room` | Client → Server | Join a chat room |\n| `leave_room` | Client → Server | Leave a chat room |\n| `send_message` | Client → Server | Send new message |\n| `receive_message` | Server → Client | Receive new message |\n\n\n## Screenshots 📸\n\n### Main\nhttps://github.com/user-attachments/assets/59b04353-bf0b-49ee-8ac3-16b7fa5c56df\n\n### Login and Sign Up\n\u003cimg width=\"959\" alt=\"image\" src=\"https://github.com/user-attachments/assets/ab8eb362-ed63-4eff-a8de-9b12f83e6c11\" /\u003e\n\u003cimg width=\"959\" alt=\"image\" src=\"https://github.com/user-attachments/assets/5ecff9eb-dc64-4958-867b-a91df0f665c6\" /\u003e\n\n### Dashboard\n\u003cimg width=\"959\" alt=\"image\" src=\"https://github.com/user-attachments/assets/7d49152c-ba39-4bf3-a3f2-9ee99d3c6a2a\" /\u003e\n\n### Spaces\n\u003cimg width=\"959\" alt=\"image\" src=\"https://github.com/user-attachments/assets/b5da6e88-899e-447d-a302-75f3289a8094\" /\u003e\n\n### Chat Room\nhttps://github.com/user-attachments/assets/2a1f07af-3ee0-4cd7-9aab-0b688fc1f394\n\n\n### Create Space\n\u003cimg width=\"959\" alt=\"image\" src=\"https://github.com/user-attachments/assets/515514c1-1115-4055-b4a1-a001883520ff\" /\u003e\n\n\n\n## Contributing 🤝\n\nContributions are welcome! Please follow these steps:\n\n1. Fork the project\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License 📄\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpunitkumar4871%2Fpremium_chat_application","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpunitkumar4871%2Fpremium_chat_application","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpunitkumar4871%2Fpremium_chat_application/lists"}