{"id":15491550,"url":"https://github.com/tcodes0/expo-boiler-oss","last_synced_at":"2025-07-25T09:38:11.323Z","repository":{"id":71830830,"uuid":"285430327","full_name":"tcodes0/expo-boiler-oss","owner":"tcodes0","description":"expo managed app boilerplate with several cool features","archived":false,"fork":false,"pushed_at":"2020-08-06T00:24:17.000Z","size":664,"stargazers_count":17,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-24T14:07:03.952Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/tcodes0.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}},"created_at":"2020-08-06T00:00:19.000Z","updated_at":"2021-04-22T15:30:07.000Z","dependencies_parsed_at":"2023-07-08T19:16:20.594Z","dependency_job_id":null,"html_url":"https://github.com/tcodes0/expo-boiler-oss","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tcodes0/expo-boiler-oss","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tcodes0%2Fexpo-boiler-oss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tcodes0%2Fexpo-boiler-oss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tcodes0%2Fexpo-boiler-oss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tcodes0%2Fexpo-boiler-oss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tcodes0","download_url":"https://codeload.github.com/tcodes0/expo-boiler-oss/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tcodes0%2Fexpo-boiler-oss/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266988292,"owners_count":24017330,"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-07-25T02:00:09.625Z","response_time":70,"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":[],"created_at":"2024-10-02T07:54:12.389Z","updated_at":"2025-07-25T09:38:11.315Z","avatar_url":"https://github.com/tcodes0.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Expo app\n\n\u003e Technical showcase and ts-monorepo boilerplate with yarn workspaces and expo managed react-native app\n\n## Running the app\n\n### Quick setup\n\nuse node 10x, 12x, or 14x \u003cbr/\u003e\nrun `yarn` \u003cbr/\u003e\nrun `yarn app:android` or \u003cbr/\u003e\nrun `yarn app:ios`\n\niOS emulator or android simulator should open automatically\n\nIf you have issues see [dev-setup](./packages/docs/dev-setup.md)\u003cbr/\u003e\nAbout dark-light mode OS setting see [dark-mode](./packages/docs/dark-mode.md)\n\n## Technical Features overview\n\n| Feature                     | Reasoning                                            |\n| --------------------------- | ---------------------------------------------------- |\n| Yarn workspaces monorepo    | structure, reusability of previous work              |\n| Typescript                  | type-checker, enforced on CI                         |\n| Jest                        | unit tests, enforced on CI                           |\n| Codecov                     | test coverage, enforced on CI                        |\n| Prettier                    | formatting, enforced on commit                       |\n| Husky \u0026 lint-staged         | commit hook linting                                  |\n| Eslint                      | linter, enforced on commit                           |\n| Eslint config               | detailed and built from experience                   |\n| @expoBoiler/babel package   | isolates babel config for reuse                      |\n| @expoBoiler/app package     | isolates react-native \u0026 app code                     |\n| @expoBoiler/config package  | application configuration, dependency injection      |\n| @expoBoiler/docs package    | project documentation                                |\n| @expoBoiler/scripts package | shell scripts, including post install                |\n| @expoBoiler/utils package   | helpers and types                                    |\n| Github workflow             | CI/CD with self cancellation and [skip ci] support   |\n| Expo                        | managed workflow                                     |\n| Yml config files            | better readability                                   |\n| ECMAScript modules          | standard moving forward, enforced by linting         |\n| Dark mode auto switch       | good support from react-native, good to have         |\n| Style-Components            | leverage css-in-js features, better web interop      |\n| Responsiveness              | library provides screen-relative css sizes           |\n| Redux                       | latest recommended setup, tried-and-tested solution  |\n| React Navigation 5          | latest version react-native navigation solution      |\n| Absolute imports            | better to refactor, more maintanable, better modules |\n| Data fetching               | SWR library for simplicity and good API              |\n| Container/Component pattern | separation of concerns between UI and logic          |\n| Componentization            | decouple from design system, re-use                  |\n| Design system               | consistent UI with react-native-paper                |\n| Unit tests                  | on error-prone or complex pieces of code             |\n| Design                      | educated guess                                       |\n| Color theme                 | consumed by components, powers dark mode             |\n| Navigation transitions      | custom UX                                            |\n| Error reporting             | using expo-sentry                                    |\n\n## React features\n\n| Feature             | Reasoning                                    |\n| ------------------- | -------------------------------------------- |\n| Hooks               | modern React API for logic re-use            |\n| Context             | avoid prop-drilling, scalability, simplicity |\n| Named components    | names show in debugger                       |\n| UseMemo             | memoization of a value                       |\n| UseCallback         | memoization of a function                    |\n| UseEffect           | run logic inside React component             |\n| Eslint-plugin-hooks | avoid bugs with hooks                        |\n| Error boundary      | on top level component                       |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftcodes0%2Fexpo-boiler-oss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftcodes0%2Fexpo-boiler-oss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftcodes0%2Fexpo-boiler-oss/lists"}