{"id":22937651,"url":"https://github.com/bhavishya2601/chatterix","last_synced_at":"2026-04-10T03:56:18.962Z","repository":{"id":268086107,"uuid":"898276205","full_name":"Bhavishya2601/Chatterix","owner":"Bhavishya2601","description":"Chatterix: Where Conversations Come to Life!","archived":false,"fork":false,"pushed_at":"2025-01-26T17:34:32.000Z","size":1933,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-01T19:32:00.670Z","etag":null,"topics":["expressjs","mongodb","nodejs","reactjs","socket-io"],"latest_commit_sha":null,"homepage":"https://chatterix.vercel.app","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bhavishya2601.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-12-04T05:28:06.000Z","updated_at":"2025-01-26T17:34:35.000Z","dependencies_parsed_at":"2024-12-14T08:17:21.469Z","dependency_job_id":"4b3abd99-1b31-4456-b8ed-f5ddd60189b9","html_url":"https://github.com/Bhavishya2601/Chatterix","commit_stats":null,"previous_names":["bhavishya2601/chatterix"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Bhavishya2601/Chatterix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bhavishya2601%2FChatterix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bhavishya2601%2FChatterix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bhavishya2601%2FChatterix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bhavishya2601%2FChatterix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bhavishya2601","download_url":"https://codeload.github.com/Bhavishya2601/Chatterix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bhavishya2601%2FChatterix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28131096,"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","status":"online","status_checked_at":"2025-12-30T02:00:05.476Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["expressjs","mongodb","nodejs","reactjs","socket-io"],"created_at":"2024-12-14T12:13:54.842Z","updated_at":"2025-12-30T19:03:47.053Z","avatar_url":"https://github.com/Bhavishya2601.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chatterix\n\n**Chatterix** is a real-time chat application that allows users to communicate seamlessly. It leverages modern web technologies to provide an interactive and user-friendly chatting experience.\n\n---\n\n## **Features**\n\n- **Real-Time Chatting**: Instant messaging powered by `socket.io` for a smooth communication experience.\n- **Modern UI**: Built with React for an intuitive and responsive user interface.\n- **User Authentication**: Secure login and registration using JSON Web Tokens (JWT).\n- **Database Storage**: Messages and user data are stored efficiently in MongoDB.\n- **Scalable Backend**: Developed with Express and Node.js for robust server-side operations.\n- **Mobile-Friendly Design**: Fully responsive layout that works on any device.\n- **Tailwind CSS**: For fast and modern styling.\n\n---\n\n## **Tech Stack**\n\n### **Frontend**\n- **React**: For building a dynamic and responsive user interface.\n- **Tailwind CSS**: For styling and a visually appealing design.\n\n### **Backend**\n- **Node.js**: For scalable server-side scripting.\n- **Express.js**: For building RESTful APIs.\n- **Socket.io**: For enabling real-time communication.\n\n### **Database**\n- **MongoDB**: For storing user and message data.\n\n### **Other Tools**\n- **JWT (JSON Web Tokens)**: For secure authentication.\n- **dotenv**: For environment variable management.\n- **nodemon**: For efficient backend development.\n\n---\n\n## **Getting Started**\n\nFollow these steps to set up and run **Chatterix** on your local machine.\n\n### **Prerequisites**\n\nEnsure you have the following installed on your system:\n- [Node.js](https://nodejs.org/) (v16 or higher)\n- [MongoDB](https://www.mongodb.com/try/download/community)\n- [Git](https://git-scm.com/)\n\n### **Installation**\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/bhavishya2601/chatterix.git\n   cd chatterix\n   ```\n\n2. Install dependencies for both frontend and backend:\n   ```bash\n   # Backend dependencies\n   cd server\n   npm install\n\n   # Frontend dependencies\n   cd ../client\n   npm install\n   ```\n\n3. **Configure Backend Environment Variables**:\n   Copy the `.env.sample` file in the `server` directory and rename it to `.env`:\n     ```bash\n     cp .env.sample .env\n     ```\n   Open the `.env` file and fill in the required values.\n\n4. **Configure Frontend Environment Variables**:\n   Copy the `.env.sample` file in the `client` directory and rename it to `.env`:\n     ```bash\n     cp .env.sample .env\n     ```\n   Open the `.env` file and fill in the required values.\n\n5. Run the application:\n   ```bash\n   # Start the backend server\n   cd server\n   node index.js\n\n   # Start the frontend server\n   cd ../client\n   npm run dev\n   ```\n\n6. Open your browser and navigate to:\n   ```\n   http://localhost:5173\n   ```\n\n---\n\n## **Project Structure**\n\n```\nchatterix/\n├── client/             # Frontend React application\n│   ├── public/\n│   ├── src/\n│   │   ├── components/ # Reusable UI components\n│   │   ├── pages/      # Application pages (Chat, Login, etc.)\n│   │   └── App.js      # Main React component\n│   └── package.json    # Frontend dependencies\n├── server/             # Backend Express application\n│   ├── models/         # MongoDB schemas\n│   ├── routes/         # API routes\n│   ├── index.js        # Entry point for the server\n│   └── package.json    # Backend dependencies\n└── README.md           # Documentation\n```\n\n## **Contributing**\n\nContributions are welcome! To contribute:\n1. Fork the repository.\n2. Create a feature branch:\n   ```bash\n   git checkout -b feature-name\n   ```\n3. Commit your changes and push:\n   ```bash\n   git commit -m \"Add your message here\"\n   git push origin feature-name\n   ```\n4. Open a Pull Request.\n\n---\n\n## **License**\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n---\n\n## **Contact**\n\nFor any inquiries or support, reach out at [bhavishya2601garg@gmail.com](mailto:bhavishya2601garg@gmail.com).\n\n---\n\nEnjoy using **Chatterix**!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhavishya2601%2Fchatterix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbhavishya2601%2Fchatterix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhavishya2601%2Fchatterix/lists"}