{"id":32778574,"url":"https://github.com/saliim17/linkhub-project","last_synced_at":"2026-04-15T14:05:59.857Z","repository":{"id":321956294,"uuid":"1087356138","full_name":"Saliim17/linkhub-project","owner":"Saliim17","description":"Monorepo Full-Stack TypeScript: API (Fastify, Prisma, Zod) + Frontend (React, Vite).","archived":false,"fork":false,"pushed_at":"2025-11-01T15:35:17.000Z","size":84,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-01T17:22:52.993Z","etag":null,"topics":["fastify","full-stack","jwt","monorepo","prisma","react","typescript","vite","zod"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/Saliim17.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-31T19:16:05.000Z","updated_at":"2025-11-01T15:37:05.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Saliim17/linkhub-project","commit_stats":null,"previous_names":["saliim17/linkhub-project"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Saliim17/linkhub-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Saliim17%2Flinkhub-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Saliim17%2Flinkhub-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Saliim17%2Flinkhub-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Saliim17%2Flinkhub-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Saliim17","download_url":"https://codeload.github.com/Saliim17/linkhub-project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Saliim17%2Flinkhub-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":282658689,"owners_count":26705665,"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-11-04T02:00:05.887Z","response_time":62,"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":["fastify","full-stack","jwt","monorepo","prisma","react","typescript","vite","zod"],"created_at":"2025-11-04T15:01:16.730Z","updated_at":"2026-04-15T14:05:59.851Z","avatar_url":"https://github.com/Saliim17.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Project LinkHub\n\n[![codecov](https://codecov.io/gh/Saliim17/linkhub-project/graph/badge.svg?token=239KHSAGAO)](https://codecov.io/gh/Saliim17/linkhub-project)\n\nA Linktree clone / 'link-in-bio' profile manager built as a Full-Stack 100% TypeScript learning project.\n\nThis repository is a **Full-Stack TypeScript Monorepo** containing:\n\n1.  **`/linkhub-api`**: A robust backend API **(Fastify, Prisma, Zod)**\n2.  **`/linkhub-app`**: A React admin dashboard **(React, Vite, Vitest)**\n\n---\n\n## ✨ Core Features\n\n* **Backend (API):**\n    * Complete User Authentication (Register \u0026 Login) with JWT.\n    * Protected CRUD (Create, Read, Update, Delete) endpoints for Links.\n    * Publicly accessible profile route (`/:username`) to display links.\n* **Frontend (App):**\n    * Token-based authentication flow (Login, Register, Logout).\n    * Protected routing to secure the dashboard.\n    * API data fetching with `axios` to display user links.\n* **DevOps:**\n    * Full CI/CD pipeline with GitHub Actions.\n    * Automated linting, testing, and building for the frontend.\n\n---\n\n## 🛠️ Tech Stack\n\n### Backend (`/linkhub-api`)\n\n* **Framework:** Fastify\n* **Language:** TypeScript (Strict)\n* **Database:** PostgreSQL (managed by Prisma)\n* **ORM:** Prisma\n* **Authentication:** JWT (JSON Web Tokens)\n* **Validation:** Zod\n* **Code Quality:** ESLint, Prettier\n\n### Frontend (`/linkhub-app`)\n\n* **Framework:** React\n* **Language:** TypeScript\n* **Bundler:** Vite\n* **Routing:** React Router DOM\n* **Testing:** Vitest \u0026 React Testing Library\n* **Data Fetching:** Axios\n* **Code Quality:** ESLint, Prettier\n\n---\n\n## 🏁 Getting Started\n\nTo run this project, you will need **three** separate terminals.\n\n### 1. Start the Backend (API)\n\n```bash\n# Terminal 1 (Database)\ncd linkhub-api\nnpx prisma dev\n\n# Terminal 2 (API Server)\ncd linkhub-api\nnpm run dev\n```\nThe API will be running at http://localhost:3000\n\n### 2. Start the Frontend (App)\n```\n# Terminal 3 (React App)\ncd linkhub-app\nnpm run dev\n```\nThe React app will be running at http://localhost:5173\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaliim17%2Flinkhub-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaliim17%2Flinkhub-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaliim17%2Flinkhub-project/lists"}