{"id":39689790,"url":"https://github.com/mohit838/ultimate-resume-builder","last_synced_at":"2026-01-18T10:04:29.327Z","repository":{"id":320908123,"uuid":"960495176","full_name":"mohit838/ultimate-resume-builder","owner":"mohit838","description":"Ultimate Resume Builder is a free tools for creating new CV for candidate whose don't have much time","archived":false,"fork":false,"pushed_at":"2025-10-26T16:15:05.000Z","size":512,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-26T18:22:38.701Z","etag":null,"topics":["antd-design","docker","docker-compose","expressjs","mongodb","mysql-database","nodejs","reactjs","resume","resume-builder","tailwindcss","tanstack-react-query","typescript","vitejs"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/mohit838.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-04T14:31:02.000Z","updated_at":"2025-10-26T16:15:09.000Z","dependencies_parsed_at":"2025-10-26T18:34:53.799Z","dependency_job_id":null,"html_url":"https://github.com/mohit838/ultimate-resume-builder","commit_stats":null,"previous_names":["mohit838/ultimate-resume-builder"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/mohit838/ultimate-resume-builder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohit838%2Fultimate-resume-builder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohit838%2Fultimate-resume-builder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohit838%2Fultimate-resume-builder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohit838%2Fultimate-resume-builder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mohit838","download_url":"https://codeload.github.com/mohit838/ultimate-resume-builder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohit838%2Fultimate-resume-builder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28534218,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"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":["antd-design","docker","docker-compose","expressjs","mongodb","mysql-database","nodejs","reactjs","resume","resume-builder","tailwindcss","tanstack-react-query","typescript","vitejs"],"created_at":"2026-01-18T10:04:29.187Z","updated_at":"2026-01-18T10:04:29.313Z","avatar_url":"https://github.com/mohit838.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧾 Ultimate Resume Builder\n\nUltimate Resume Builder is a full-stack backend application designed to help users manage categories (and eventually resumes, users, etc.) using Node.js, MySQL, and Redis — with a clean, modular codebase that's easy to scale and maintain.\n\n---\n\n## 📦 Tech Stack\n\n- **Node.js** with **Express** (API server)\n- **TypeScript** (type safety \u0026 productivity)\n- **MySQL** (relational database)\n- **Redis** (caching, health check, rate-limiting)\n- **Docker** (containerized development)\n- **express-validator** (input validation)\n- Clean Architecture: route → controller → service → repository → database\n\n---\n\n## 🛠️ Folder Structure\n\n```bash\nsrc/\n├── config/            # App constants, database \u0026 Redis config\n├── controllers/       # Handle incoming HTTP requests\n├── models/            # TypeScript interfaces for data models\n├── repositories/      # Actual DB queries\n├── routes/            # API route definitions\n├── services/          # Business logic between controller and repo\n├── utils/             # Rate limiter and other helpers\n├── errors/            # Custom error handling middleware\n├── logger/            # Logger config (for now: uses morgan)\n└── index.ts           # Main app entry point\n```\n\n````\n\n---\n\n## 🧪 Sample API: Category\n\n- **POST** `/api/categories` → Create a category\n- Later: add GET, PUT, DELETE, etc.\n\n```json\nPOST /api/categories\n{\n  \"name\": \"Frontend\",\n  \"description\": \"UI work and web stuff\"\n}\n```\n\n---\n\n## 🐳 Run This Project in Dev Mode\n\nMake sure Docker is installed.\n\n```bash\ndocker-compose -f docker-compose.resume.yml up -d\n```\n\n\u003e 💡 This runs MySQL, Redis, MongoDB, and Redis Stack (GUI) on custom ports.\n\nThen, in another terminal, start the Node.js server:\n\n```bash\nnpm install\nnpm run dev\n```\n\nOr if using `ts-node` or `nodemon`:\n\n```bash\nnpx ts-node src/index.ts\n```\n\n---\n\n## 🛑 Stop All Containers\n\n```bash\ndocker-compose -f docker-compose.resume.yml down\n```\n\n---\n\n## ❤️ Why This Project Is Structured This Way\n\nThis codebase uses a **clean architecture** pattern to:\n\n- Keep business logic out of controllers\n- Make code **testable**, **maintainable**, and **scalable**\n- Help you learn best practices for real-world projects\n\nEven though it starts small, this setup works well for growing apps like:\n\n- Resume builder (multi-user)\n- Admin panels\n- CMS/blog systems\n- Portfolio APIs\n\n---\n\n## 📈 What's Coming Next\n\n- User authentication (JWT)\n- Resume upload \u0026 generation\n- Public resume sharing\n- Admin dashboard\n- MongoDB for storing resume templates/content\n- Redis for caching \u0026 sessions\n\n---\n\n## 🤝 Contributing\n\nThis project is in early development. If you're learning Node.js or clean backend architecture, you're welcome to clone, fork, or contribute.\n\n---\n\n## 📬 Contact\n\nIf you have questions, open an issue or message the creator!\n\n---\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohit838%2Fultimate-resume-builder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmohit838%2Fultimate-resume-builder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohit838%2Fultimate-resume-builder/lists"}