{"id":16635805,"url":"https://github.com/ythecombinator/techlabs-workshop-weekend-2020","last_synced_at":"2026-05-13T20:35:00.444Z","repository":{"id":88818233,"uuid":"320980937","full_name":"ythecombinator/techlabs-workshop-weekend-2020","owner":"ythecombinator","description":"Sample app used during my \"Building a modern front-end application for your project\" workshop.","archived":false,"fork":false,"pushed_at":"2020-12-13T06:06:57.000Z","size":711,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-29T04:28:34.285Z","etag":null,"topics":["react","typescript"],"latest_commit_sha":null,"homepage":"https://techlabs-workshop-weekend.netlify.app/","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/ythecombinator.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":"2020-12-13T04:11:31.000Z","updated_at":"2024-08-23T09:59:30.000Z","dependencies_parsed_at":"2023-06-12T19:00:28.707Z","dependency_job_id":null,"html_url":"https://github.com/ythecombinator/techlabs-workshop-weekend-2020","commit_stats":{"total_commits":20,"total_committers":1,"mean_commits":20.0,"dds":0.0,"last_synced_commit":"493c809af4341d6c8a2630586605d89dec380179"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ythecombinator/techlabs-workshop-weekend-2020","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ythecombinator%2Ftechlabs-workshop-weekend-2020","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ythecombinator%2Ftechlabs-workshop-weekend-2020/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ythecombinator%2Ftechlabs-workshop-weekend-2020/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ythecombinator%2Ftechlabs-workshop-weekend-2020/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ythecombinator","download_url":"https://codeload.github.com/ythecombinator/techlabs-workshop-weekend-2020/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ythecombinator%2Ftechlabs-workshop-weekend-2020/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32999515,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"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":["react","typescript"],"created_at":"2024-10-12T06:04:52.918Z","updated_at":"2026-05-13T20:35:00.427Z","avatar_url":"https://github.com/ythecombinator.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n\t\u003cimg src=\"preview.png\" alt=\"TechLabs\" width=\"800px\"\u003e\n\t\u003cbr\u003e\n\t\u003cbr\u003e\n\u003c/h1\u003e\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n\u003cp align=\"center\"\u003e Sample app used during my \"Building a modern front-end application for your project\" workshop.\u003c/p\u003e\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n## Getting Started\n\nClone the repository.\n\n```sh\ngit clone https://github.com/ythecombinator/techlabs-workshop-weekend-2020\n```\n\n`cd` into the directory.\n\n```sh\ncd techlabs-workshop-weekend-2020\n```\n\nInstall the project dependencies:\n\n```sh\nyarn\n\n# or\n\nnpm install\n```\n\nStart the development server:\n\n```sh\nyarn start\n\n# or\n\nnpm run start\n```\n\n🚀 Head over to [localhost:3000](http://localhost:3000) in your browser of choice.\n\n## Toolbelt\n\n- [x] React as a UI language\n- [x] Typescript for compile-time safety and code scalability with Interface oriented development\n- [x] Material UI as our design toolkit\n- [x] Formik + Yup for forms and their validation\n- [x] SWR for data fetching\n- [x] Day.js for date handling\n\n## Project Structure\n\nThe project follows a regular [create-react-app](https://github.com/facebook/create-react-app) skeleton with very few modifications.\n\nUnder the src folder, we have two main directories:\n\n### `shared`:\n\nWhich contains, as the name suggests, shared behavior, including:\n\n- `assets/`: Images, CSS files, and other static assets\n- `components/`: Components reused across pages\n- `layouts/`: Reusable Layouts\n- `models/`: Shared interfaces, enums, type aliases, and other TypeScript stuff\n- `utils/`: Helper functions reusable across the project\n\n### `modules/`:\n\nThese are each isolated functionality. Examples are:\n\n- `auth`, split into `sign-in` and `sign-up`;\n- `home`\n- `events`\n\nEach module is organized in:\n\n- `components/`: Components relevant to that page\n- `hooks`: Selectors, data access and mutation, and other hooks\n- `models/`: TypeScript relevant stuff\n\nDirectories look like this:\n\n```sh\n|-- shared/\n|   |-- api/\n|   |-- assets/\n|   |-- components/\n|   |-- core/\n|   |-- layouts/\n|   |-- models/\n|   |-- utils/\n|   |-- ...\n|-- modules/\n|\t|-- auth/\n|\t\t|-- sign-in/\n|\t\t|   |-- ...\n|\t\t|-- sign-up/\n|\t\t|   |-- ...\n|\t   \t|-- ...\n|\t|-- events/\n|\t\t|-- components/\n|\t\t|-- core/\n|\t\t|-- hooks.ts\n|\t\t|-- models.ts\n|\t\t|-- index.ts\n|\t\t|-- ...\n|   |-- ...\n|   |-- api/\n|   |-- assets/\n|   |-- components/\n|   |-- core/\n|   |-- layouts/\n|   |-- models/\n|   |-- utils/\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fythecombinator%2Ftechlabs-workshop-weekend-2020","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fythecombinator%2Ftechlabs-workshop-weekend-2020","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fythecombinator%2Ftechlabs-workshop-weekend-2020/lists"}