{"id":26544108,"url":"https://github.com/hmerritt/adrift","last_synced_at":"2026-04-10T12:31:43.389Z","repository":{"id":37538848,"uuid":"464621856","full_name":"hmerritt/adrift","owner":"hmerritt","description":"🌊 Template react app (with batteries included 🔋)","archived":false,"fork":false,"pushed_at":"2026-03-31T16:43:20.000Z","size":10297,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-31T18:39:23.701Z","etag":null,"topics":["adrift","linaria","react","react-router","react-template","redux","typescript","vite","vitest"],"latest_commit_sha":null,"homepage":"https://adriftjs.netlify.app","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/hmerritt.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2022-02-28T19:47:49.000Z","updated_at":"2026-03-31T16:43:25.000Z","dependencies_parsed_at":"2023-12-21T21:43:28.879Z","dependency_job_id":"5069fb52-b5cb-4cf2-a138-898ed460b40a","html_url":"https://github.com/hmerritt/adrift","commit_stats":null,"previous_names":["hmerritt/adrift"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/hmerritt/adrift","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hmerritt%2Fadrift","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hmerritt%2Fadrift/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hmerritt%2Fadrift/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hmerritt%2Fadrift/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hmerritt","download_url":"https://codeload.github.com/hmerritt/adrift/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hmerritt%2Fadrift/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31642707,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"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":["adrift","linaria","react","react-router","react-template","redux","typescript","vite","vitest"],"created_at":"2025-03-22T03:17:21.820Z","updated_at":"2026-04-10T12:31:43.064Z","avatar_url":"https://github.com/hmerritt.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Adrift\n\nTemplate react app with batteries included 🔋\n\n- [Vite](https://vitejs.dev)\n- [Vitest](https://vitest.dev/) (testing for Vite)\n- [Playwright](https://playwright.dev) (testing end-to-end)\n- [Typescript](https://www.typescriptlang.org)\n- [TanStack Store](https://tanstack.com/store/latest)\n- [TanStack Router](https://tanstack.com/router/latest)\n- [StyleX](https://stylexjs.com/)\n- [React Scan](https://github.com/aidenybai/react-scan) (local development)\n- [Cosmos](https://github.com/react-cosmos/react-cosmos) (local development / lightweight `Storybook` alternative)\n- Custom\n    - [`bootstrap.ts`](./bootstrap.ts) - Build script\n    - [`persist.ts`](./src/state/persist.ts) - Persister for [TanStack Store](https://tanstack.com/store/latest)\n    - Components\n        - [`Halo`](./src/view/components/experimental/Halo/index.tsx) - Animated halo/glow effect around a box\n        - [`Noise`](./src/view/components/experimental/Noise/index.tsx) - Animated noise/grain effect (for images)\n        - [`Ripple`](./src/view/components/experimental/Ripple/index.tsx) - Animated ripple effect on-click (inspired by material-ui)\n        - [`Shader`](./src/view/components/experimental/Shader/index.tsx) - Renders a basic GLSL shader (just ~3kb gziped)\n    - Utils and helper functions\n        - [`log`](./src/lib/global/log.ts) - Log functions with timestamps, namespaces, and time-since-last-log prepended to each log\n        - [`env`](./src/lib/global/env.ts) - Env object with type-safe environment variables\n        - [`feature`](./src/lib/global/featureFlags.ts) - Feature flag function (uses `env`)\n\n\u003e Checkout [Adrift Native](https://github.com/hmerritt/adrift-native) to run Adrift apps natively on Windows, Mac, and Linux.\n\n## Getting started\n\n**_Quick start_**, get up an running in one command:\n\n```bash\ngit clone https://github.com/hmerritt/adrift \u0026\u0026 cd adrift \u0026\u0026 bun i \u0026\u0026 bun dev\n```\n\nClone this repo and run one of the following scripts:\n\nAvailable scripts (run using `bun run \u003cscript\u003e`):\n\n- `dev` - starts Vite dev server for local development\n- `lint` - runs fast lint (`oxlint`), ESLint compatibility checks, and type-checking\n- `lint:fast` - runs `oxlint` (primary fast lint pass)\n- `lint:eslint` - runs ESLint (StyleX + React hooks/compiler compatibility rules)\n- `typecheck` - runs TypeScript type-checking (`tsc --noEmit`)\n- `test` - runs all test files\n- `preview` - similar to `dev`, but uses production mode to simulate the final build\n- `build` - builds the project to `dist` directory\n- `cosmos` - [Cosmos](https://github.com/react-cosmos/react-cosmos) dev server\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhmerritt%2Fadrift","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhmerritt%2Fadrift","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhmerritt%2Fadrift/lists"}