{"id":51123336,"url":"https://github.com/coderkearns/alpine-tailwind-vite-template","last_synced_at":"2026-06-25T05:01:23.793Z","repository":{"id":354269465,"uuid":"1222896347","full_name":"coderkearns/alpine-tailwind-vite-template","owner":"coderkearns","description":"A Vite + Tailwind CSS + Alpine.js starter template for new GitHub projects.","archived":false,"fork":false,"pushed_at":"2026-04-27T20:25:36.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-27T22:17:04.464Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://coderkearns.github.io/alpine-tailwind-vite-template/","language":"HTML","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/coderkearns.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-27T20:16:20.000Z","updated_at":"2026-04-27T21:06:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/coderkearns/alpine-tailwind-vite-template","commit_stats":null,"previous_names":["coderkearns/alpine-tailwind-vite-template"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/coderkearns/alpine-tailwind-vite-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderkearns%2Falpine-tailwind-vite-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderkearns%2Falpine-tailwind-vite-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderkearns%2Falpine-tailwind-vite-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderkearns%2Falpine-tailwind-vite-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coderkearns","download_url":"https://codeload.github.com/coderkearns/alpine-tailwind-vite-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderkearns%2Falpine-tailwind-vite-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34760219,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"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":"2026-06-25T05:01:22.993Z","updated_at":"2026-06-25T05:01:23.765Z","avatar_url":"https://github.com/coderkearns.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Alpine Tailwind Vite Template\n\n\u003e A lightweight, opinionated starter for building fast frontends with **Vite**, **Tailwind CSS**, and **Alpine.js**.\n\n\u003cdiv align=\"center\"\u003e\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Vite](https://img.shields.io/badge/Vite-8.0+-646CFF?logo=vite\u0026logoColor=white)](https://vitejs.dev)\n[![Tailwind CSS](https://img.shields.io/badge/Tailwind-4.2+-38B2AC?logo=tailwind-css\u0026logoColor=white)](https://tailwindcss.com)\n[![Alpine.js](https://img.shields.io/badge/Alpine-3.15+-77C1D2?logo=alpinedotjs\u0026logoColor=white)](https://alpinejs.dev)\n\n\u003c/div\u003e\n\n## 🚀 Quick Start\n\n### 1. Use this template\nClick the **Use this template** button on GitHub to create a new repository from this starter.\n\n### 2. Clone \u0026 install\n```bash\ngit clone https://github.com/yourusername/your-repo.git\ncd your-repo\nnpm install\n```\n\n### 3. Develop locally\n```bash\nnpm run dev\n```\nOpens on `http://localhost:5173` with hot reload enabled.\n\n### 4. Build \u0026 deploy\n```bash\n# Build for production\nnpm run build\n\n# Deploy to GitHub Pages\nnpm run deploy\n```\n\nThen in your GitHub repository **Settings** → **Pages**, set the source to the `gh-pages` branch.\n\n---\n\n## ✨ Features\n\n- **Vite** for lightning-fast development and optimized production builds\n- **Tailwind CSS v4** with semantic theme tokens and first-class color utilities\n- **Alpine.js** for lightweight, focused UI interactions without framework overhead\n- **GitHub Pages ready** with `gh-pages` deployment built-in\n- **Clean separation**: HTML templates in `.html`, component logic in `.js`, styling in `.css`\n- **Sensible defaults** for Git, accessibility, and responsive design\n- **No CI or tests** — keep it simple, add complexity as needed\n\n---\n\n## 📁 Project structure\n\n```\n├── index.html              # Main entry point with app markup\n├── src/\n│   ├── main.js            # Alpine.js components and logic\n│   └── styles/\n│       └── main.css       # Tailwind, base styles, theme tokens, components\n├── vite.config.js         # Vite configuration\n├── package.json           # Dependencies and scripts\n└── README.md              # This file\n```\n\n---\n\n## 🎨 Customization\n\n### Update the counter component\nEdit the markup in [`index.html`](./index.html) and the logic in [`src/main.js`](./src/main.js).\n\n### Theme tokens \u0026 design system\nAdjust color, typography, and spacing in [`src/styles/main.css`](./src/styles/main.css) using Tailwind's `@theme` directive:\n\n```css\n@theme inline {\n  --color-primary: #0f172a;\n  --color-background: #f8fafc;\n  /* ... */\n}\n```\n\nThen use them as semantic utilities:\n```html\n\u003cbutton class=\"bg-primary text-primary-foreground\"\u003eClick me\u003c/button\u003e\n```\n\n---\n\n## 🔧 Available scripts\n\n| Command | Purpose |\n|---------|---------|\n| `npm run dev` | Start dev server with hot reload |\n| `npm run build` | Build production bundle to `dist/` |\n| `npm run preview` | Preview production build locally |\n| `npm run deploy` | Build and publish to GitHub Pages |\n\n---\n\n## 📄 License\n\nMIT — see [LICENSE](./LICENSE) for details.\n\n---\n\n## 🎯 Next steps\n\n1. Delete or modify the example counter in `index.html` and `src/main.js`\n2. Update the site title, description, and metadata\n3. Add your brand colors and tokens to `src/styles/main.css`\n4. Build your app, then deploy with `npm run deploy`\n\n**Happy building!** 🎉\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderkearns%2Falpine-tailwind-vite-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoderkearns%2Falpine-tailwind-vite-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderkearns%2Falpine-tailwind-vite-template/lists"}