{"id":16392826,"url":"https://github.com/jimmy-guzman/solid-starter","last_synced_at":"2026-04-10T02:37:42.007Z","repository":{"id":155712442,"uuid":"623217479","full_name":"jimmy-guzman/solid-starter","owner":"jimmy-guzman","description":"🍱 Another Solid Starter using Bun, Vite, TypeScript, tailwindcss and daisyUI.","archived":false,"fork":false,"pushed_at":"2024-04-13T16:58:37.000Z","size":763,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-02T22:11:47.541Z","etag":null,"topics":["bun","daisyui","eslint","msw","playwright","solidjs","tailwind","tailwindcss","typescript","vitejs","vitest"],"latest_commit_sha":null,"homepage":"https://solid-starter.vercel.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/jimmy-guzman.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":"2023-04-03T23:49:44.000Z","updated_at":"2024-09-18T02:30:01.000Z","dependencies_parsed_at":"2023-12-09T21:23:14.632Z","dependency_job_id":"5f878ea4-cc6d-4cb6-9966-ff146b944cbb","html_url":"https://github.com/jimmy-guzman/solid-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/jimmy-guzman/solid-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimmy-guzman%2Fsolid-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimmy-guzman%2Fsolid-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimmy-guzman%2Fsolid-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimmy-guzman%2Fsolid-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jimmy-guzman","download_url":"https://codeload.github.com/jimmy-guzman/solid-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimmy-guzman%2Fsolid-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005967,"owners_count":26084004,"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-10-11T02:00:06.511Z","response_time":55,"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":["bun","daisyui","eslint","msw","playwright","solidjs","tailwind","tailwindcss","typescript","vitejs","vitest"],"created_at":"2024-10-11T04:51:31.558Z","updated_at":"2025-10-11T02:40:15.075Z","avatar_url":"https://github.com/jimmy-guzman.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Solid Starter\n\n\u003e 🍱 Another Solid Starter using Bun, Vite, TypeScript, tailwindcss and daisyUI.\n\n## Features\n\n- 🍞 [bun][bun] for a fast runtime and package manager.\n- ⚡️ [vite][vite] for instant server start and lighting fast HMR.\n- 🏷️ [TypeScript][TypeScript] for a less frustrating \u0026 consistent experience.\n- 🗺️ [Solid Router](https://github.com/solidjs/solid-router) for a universal router for SolidJS.\n- 🏝️ [TanStack Query][TanStack Query] for asynchronous state management.\n- 💄 [tailwindcss][tailwindcss] for utility-first CSS.\n- 💄 [daisyUI](https://daisyui.com) for tailwindcss components.\n- 🧪 [vitest][vitest] for fast testing.\n- 🧪 [Playwright][Playwright] for fast and reliable e2e testing.\n- 🧪 [msw](https://mswjs.io) for client-agnostic API mocks.\n- 🩺 [eslint][eslint] for static analysis.\n- 🎨 [prettier][prettier] for formatting.\n- 🩺 [lefthook][lefthook] for fast Git hooks management.\n- 👷 [GitHub Actions][GitHub Actions] for easy workflow automation.\n\n## 🏁 Getting Started\n\n_💡 To avoid having to remember which package manager to use, I recommended using [ni](https://github.com/antfu/ni)_\n\nFirst install [bun](https://bun.sh/docs/installation), by running the following command:\n\n```\ncurl -fsSL https://bun.sh/install | bash\n```\n\nNow you can install dependencies, by running the following command:\n\n```\nbun install\n```\n\nAnd to download new browsers for Playwright, run the following command:\n\n```\nbunx playwright install\n```\n\nThen to run the development server, run the following command:\n\n```\nbun dev\n```\n\nYour application will be available at http://localhost:5173/ ❤️\n\n## 🧞 Available Tasks\n\n| Command              | Action                                            |\n| :------------------- | :------------------------------------------------ |\n| `bun install`        | Installs dependencies                             |\n| `bun run dev`        | Starts local dev server at http://localhost:5173/ |\n| `bun run build`      | Build your production site to `./dist/`           |\n| `bun run preview`    | Preview your build locally, before deploying      |\n| `bun run test`       | Unit tests your code with vitest                  |\n| `bun run e2e`        | E2E tests your code with playwright               |\n| `bun run lint`       | Lints everything with eslint                      |\n| `bun run lint:fix`   | Fixes lint errors with eslint                     |\n| `bun run format`     | Checks formatting with prettier                   |\n| `bun run format:fix` | Fixes formatting errors with prettier             |\n| `bun run typecheck`  | Checks types with TypeScript                      |\n\n## Recommendations\n\nIf you need to do more, I recommend the following libraries:\n\n- [TanStack Table](https://tanstack.com/table/v8/docs/adapters/solid-table) for when you need to build complex **tables** or **data grids**\n- [fathom](https://usefathom.com/) for **analytics** which is easy to use\n\n\u003c!-- features references start --\u003e\n\n[vite]: https://vitejs.dev\n[solid]: https://docs.solidjs.com\n[TypeScript]: https://www.typescriptlang.org\n[tailwindcss]: https://tailwindcss.com\n[eslint]: https://eslint.org\n[vitest]: https://vitest.dev/guide/why.html\n[Testing Library]: https://testing-library.com/docs/guiding-principles\n[Playwright]: https://playwright.dev\n[prettier]: https://prettier.io\n[bun]: https://bun.sh\n[GitHub Actions]: https://github.com/features/actions\n[lefthook]: https://github.com/evilmartians/lefthook\n[TanStack Query]: https://tanstack.com/query/v5\n\n\u003c!-- features references end --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjimmy-guzman%2Fsolid-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjimmy-guzman%2Fsolid-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjimmy-guzman%2Fsolid-starter/lists"}