{"id":18150862,"url":"https://github.com/khushi89012/dashboard","last_synced_at":"2026-01-31T08:32:21.323Z","repository":{"id":260513373,"uuid":"881506786","full_name":"khushi89012/dashboard","owner":"khushi89012","description":"This real-time dashboard utilizes large CSV files and smooth data streaming through WebSockets, ensuring efficient, live data updates for an enhanced user experience.","archived":false,"fork":false,"pushed_at":"2024-10-31T18:06:54.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-26T14:51:54.918Z","etag":null,"topics":["expressjs","mongodb","nodejs","reactjs","redis","websocket"],"latest_commit_sha":null,"homepage":"","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/khushi89012.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-10-31T17:57:05.000Z","updated_at":"2024-10-31T18:09:00.000Z","dependencies_parsed_at":"2024-10-31T19:28:02.573Z","dependency_job_id":null,"html_url":"https://github.com/khushi89012/dashboard","commit_stats":null,"previous_names":["khushi89012/dashboard"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/khushi89012/dashboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khushi89012%2Fdashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khushi89012%2Fdashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khushi89012%2Fdashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khushi89012%2Fdashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khushi89012","download_url":"https://codeload.github.com/khushi89012/dashboard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khushi89012%2Fdashboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28935403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T07:49:44.436Z","status":"ssl_error","status_checked_at":"2026-01-31T07:49:34.274Z","response_time":128,"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":["expressjs","mongodb","nodejs","reactjs","redis","websocket"],"created_at":"2024-11-02T01:05:43.967Z","updated_at":"2026-01-31T08:32:21.304Z","avatar_url":"https://github.com/khushi89012.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n## Project Structure\n\n```plaintext\nproject-root/\n│\n├── backend/                    # Backend application (Node.js, Express.js)\n│   ├── src/                    # Source files\n│   ├── .env                    # Backend environment variables\n│   └── ...\n│\n└── frontend/                   # Frontend application (React.js)\n    ├── src/                    # Source files (components located in `src/components`)\n    ├── .env                    # Frontend environment variables\n    └── ...\n```\n\n## Getting Started\n\n### Prerequisites\n\nEnsure you have the following installed:\n\n- **Node.js** (v14 or higher)\n- **npm** (v6 or higher) or **yarn**\n\n\n---\n\n## Backend Setup\n\n1. **Navigate to the Backend Directory**:\n\n    ```bash\n    cd backend\n    ```\n\n2. **Install Dependencies**:\n\n    ```bash\n    npm install\n    ```\n\n3. **Environment Variables**:\n\n    - Create a `.env` file in the `backend` directory and add the necessary environment variables.\n    \n    ```plaintext\n    PORT=5000\n    MONGODB_URI=your_mongodb_connection_string\n    JWT_SECRET=your_jwt_secret\n    ```\n\n4. **Run the Backend**:\n\n    - Start the backend server:\n\n    ```bash\n    npm start\n    ```\n\n    - The backend will be accessible at `http://localhost:5000`.\n\n---\n\n## Frontend Setup\n\n1. **Navigate to the Frontend Directory**:\n\n    ```bash\n    cd frontend\n    ```\n\n2. **Install Dependencies**:\n\n    ```bash\n    npm install\n    ```\n\n3. **Environment Variables**:\n\n    - Create a `.env` file in the `frontend` directory with the backend URL and other required variables.\n    \n    ```plaintext\n    REACT_APP_BACKEND_URL=http://localhost:5000\n    ```\n\n4. **Run the Frontend**:\n\n    - Start the frontend development server:\n\n    ```bash\n    npm start\n    ```\n\n    - The frontend will be available at `http://localhost:3000`.\n\n---\n\n## Running the Application\n\nTo run both the backend and frontend:\n\n1. Open two terminal windows or use a process manager like `concurrently` or Docker.\n2. Start the backend in one terminal:\n\n    ```bash\n    cd backend\n    npm start\n    ```\n\n3. Start the frontend in another terminal:\n\n    ```bash\n    cd frontend\n    npm start\n    ```\n\nVisit `http://localhost:3000` to access the application.\n\n---\n\n## Additional Information\n\n- **Role-Based Views**: The dashboard includes role-specific pages and features, such as full data access and user management for admin roles.\n- **Real-Time Updates**: The dashboard supports live data streaming and metric recalculations.\n- **Environment Variables**: Customize `.env` files in both `backend` and `frontend` directories as needed.\n- **Deployment**: Refer to deployment instructions (if available) to set up the application in a production environment.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhushi89012%2Fdashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhushi89012%2Fdashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhushi89012%2Fdashboard/lists"}