{"id":19232531,"url":"https://github.com/saksham0712/brocode-chatapp","last_synced_at":"2026-04-15T19:39:03.535Z","repository":{"id":241391447,"uuid":"806415698","full_name":"saksham0712/BroCode-ChatApp","owner":"saksham0712","description":"This is a website where we can chat with anyone without any personal information - (practice project)","archived":false,"fork":false,"pushed_at":"2024-10-24T16:23:29.000Z","size":3016,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-08T05:21:36.035Z","etag":null,"topics":["chatting-app","login","mongoose","nodejs","reactjs","register","socket-io"],"latest_commit_sha":null,"homepage":"https://brocode-public.vercel.app/login","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/saksham0712.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":"2024-05-27T06:51:09.000Z","updated_at":"2024-11-13T17:41:06.000Z","dependencies_parsed_at":"2024-05-28T05:08:54.740Z","dependency_job_id":"29d88a8b-18c5-4d4f-bb9b-ecbff3cd103d","html_url":"https://github.com/saksham0712/BroCode-ChatApp","commit_stats":null,"previous_names":["saksham0712/brocode-chatapp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/saksham0712/BroCode-ChatApp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saksham0712%2FBroCode-ChatApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saksham0712%2FBroCode-ChatApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saksham0712%2FBroCode-ChatApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saksham0712%2FBroCode-ChatApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saksham0712","download_url":"https://codeload.github.com/saksham0712/BroCode-ChatApp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saksham0712%2FBroCode-ChatApp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31857615,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"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":["chatting-app","login","mongoose","nodejs","reactjs","register","socket-io"],"created_at":"2024-11-09T16:06:35.996Z","updated_at":"2026-04-15T19:39:03.504Z","avatar_url":"https://github.com/saksham0712.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# BroCode\n\nBroCode is a real-time chatting application built using React for the frontend and Node.js for the backend. Users can register, choose their avatar, and chat with other registered users.\n\n## Features\n\n- User registration\n- Avatar selection\n- Real-time chat with other registered users\n\n## Demo\n\nhttps://brocode-public.vercel.app/login\n\n## Technologies Used\n\n- Frontend: React, styled-components, Axios\n- Backend: Node.js, Express\n- Database: MongoDB\n- Websockets: Socket.IO\n\n## Prerequisites\n\nBefore you begin, ensure you have met the following requirements:\n\n- Node.js installed on your machine\n- MongoDB installed and running\n\n## Installation\n\n1. **Clone the repository:**\n\n   ```sh\n   git clone https://github.com/yourusername/ChatApp.git\n   cd ChatApp\n   ```\n\n2. **Backend setup:**\n\n   ```sh\n   cd server\n   npm install\n   ```\n\n3. **Frontend setup:**\n\n   ```sh\n   cd ../client\n   npm install\n   ```\n\n## Configuration\n\n1. **Backend configuration:**\n\n   Create a `.env` file in the `server` directory and add your MongoDB URI and other environment variables:\n\n   ```plaintext\n   MONGO_URI=mongodb://localhost:27017/ChatApp\n   JWT_SECRET=your_jwt_secret\n   PORT=5000\n   ```\n\n2. **Frontend configuration:**\n\n   Create a `.env` file in the `client` directory and add your backend API URL:\n\n   ```plaintext\n   REACT_APP_API_URL=http://localhost:5000/api\n   ```\n\n## Running the Application\n\n1. **Start the backend server:**\n\n   ```sh\n   cd server\n   npm start\n   ```\n\n   The backend server will start on `http://localhost:5000`.\n\n2. **Start the frontend development server:**\n\n   ```sh\n   cd client\n   npm start\n   ```\n\n   The frontend server will start on `http://localhost:3000`.\n\n## Usage\n\n1. **Register:**\n\n   Open your browser and go to `http://localhost:3000`. Register a new user by filling out the registration form.\n\n2. **Select Avatar:**\n\n   After registration, choose an avatar from the provided options.\n\n3. **Chat:**\n\n   Start chatting with other registered users in real-time.\n\n## Folder Structure\n\nHere's a brief overview of the folder structure:\n\n```\nChatApp\n├── client                 # React frontend\n│   ├── public\n│   └── src\n│       ├── components     # React components\n│       ├── pages          # React pages\n│       ├── utils          # Utility functions\n│       ├── App.js\n│       ├── index.js\n│       └── ...\n├── server                 # Node.js backend\n│   ├── config             # Configuration files\n│   ├── controllers        # Controller functions\n│   ├── models             # Mongoose models\n│   ├── routes             # Express routes\n│   ├── server.js          # Entry point for the server\n│   └── ...\n├── .gitignore\n├── README.md\n└── package.json\n```\n### Notes:\n- Replace `yourusername` with your actual GitHub username.\n- Add any additional instructions or details specific to your project.\n- If you have additional scripts or setup steps, include them in the appropriate sections.\n- Ensure that all paths and URLs are correct and accessible.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaksham0712%2Fbrocode-chatapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaksham0712%2Fbrocode-chatapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaksham0712%2Fbrocode-chatapp/lists"}