{"id":19555439,"url":"https://github.com/sagargaud01/deep-tree-implementation","last_synced_at":"2025-11-19T22:03:11.825Z","repository":{"id":248071268,"uuid":"822458304","full_name":"SAGARGAUD01/Deep-Tree-Implementation","owner":"SAGARGAUD01","description":"Deep Tree Implementation with Next.js and NestJS","archived":false,"fork":false,"pushed_at":"2024-07-12T06:34:26.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-26T07:42:12.349Z","etag":null,"topics":["nextjs","nextjs-typescript","tree-structure"],"latest_commit_sha":null,"homepage":"https://github.com/SAGARGAUD01/Deep-Tree-Implementation","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/SAGARGAUD01.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-07-01T07:36:59.000Z","updated_at":"2024-07-13T05:45:14.000Z","dependencies_parsed_at":"2024-07-12T07:47:49.539Z","dependency_job_id":null,"html_url":"https://github.com/SAGARGAUD01/Deep-Tree-Implementation","commit_stats":null,"previous_names":["sagargaud01/deep-tree-implementation"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SAGARGAUD01/Deep-Tree-Implementation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAGARGAUD01%2FDeep-Tree-Implementation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAGARGAUD01%2FDeep-Tree-Implementation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAGARGAUD01%2FDeep-Tree-Implementation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAGARGAUD01%2FDeep-Tree-Implementation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SAGARGAUD01","download_url":"https://codeload.github.com/SAGARGAUD01/Deep-Tree-Implementation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAGARGAUD01%2FDeep-Tree-Implementation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285335552,"owners_count":27154282,"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-19T02:00:05.673Z","response_time":65,"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":["nextjs","nextjs-typescript","tree-structure"],"created_at":"2024-11-11T04:33:58.278Z","updated_at":"2025-11-19T22:03:11.808Z","avatar_url":"https://github.com/SAGARGAUD01.png","language":"JavaScript","readme":"🌳 Deep Tree Project\nWelcome to the Deep Tree Project! This project is a comprehensive full-stack application that demonstrates the capabilities of managing and visualizing a deeply nested tree structure using Next.js for the frontend and NestJS for the backend.\n\n## more about me :-\n✈️ [Follow Sagar Gaud](https://www.linkedin.com/in/sagargaud332/)\n\n## ✨ Features\n● Next.js Frontend: Efficiently renders and manages a tree structure with a depth of 10,000 nodes.\n\n● NestJS Backend: Robust backend for handling tree data storage and user management.\n\n● User Authentication: user authentication system.\n\n● Tree Manipulation: Interactive UI for manipulating tree nodes.\n\n● State Management: Efficient state management using React context or Redux.\n\n● Performance Optimizations: Techniques like lazy loading and memoization to handle large datasets.\n\n## 📂 Project Structure\ndeep-tree/\n\n```sh\n├── components/\n\n│   ├── Tree.js\n    └── TreeNode.js\n├── pages/\n\n│   ├── _app.js\n\n│   ├── index.js\n\n├── public/\n\n    ├── images/\n        └── example.png\n    └── favicon.ico\n    \n├── styles/\n    ├── globals.css\n    \n├── backend/\n    ├── src/\n        ├── app.module.ts\n        ├── main.ts\n        ├── users/\n        │   ├── user.schema.ts\n        │   ├── users.controller.ts\n        │   ├── users.service.ts\n        │   └── users.module.ts\n    ├── test/\n    │   ├── app.e2e-spec.ts\n    │   └── jest-e2e.json\n    ├── .eslintrc.js\n    ├── .prettierrc\n    ├── nest-cli.json\n    ├── tsconfig.build.json\n    ├── tsconfig.json\n    └── package.json\n\n├── .gitignore\n\n├── package.json\n\n├── next.config.js\n\n└── README.md\n```\n\n🚀 Getting Started\n## Frontend Setup (Next.js)\n\n## Navigate to the deep-tree directory:\n\n```sh\ncd deep-tree\n```\n\n## Install dependencies:\n\n```sh\nnpm install\n```\n\n## Start the development server:\n\n```sh\nnpm run dev\n```\n\n## Build for production:\n\n```sh\nnpm run build\n```\n\n##  Start the production server:\n```sh\nnpm run start\n```\n\n## Backend Setup (NestJS)\n## Navigate to the backend directory:\n\n```sh\ncd backend\n```\n\n## Install dependencies:\n\n```sh\nnpm install\n```\n\n## Make sure MongoDB is running on your machine.\n## Start the development server:\n\n```sh\nnpm run start:dev\n```\n//active_project\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsagargaud01%2Fdeep-tree-implementation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsagargaud01%2Fdeep-tree-implementation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsagargaud01%2Fdeep-tree-implementation/lists"}