{"id":31548697,"url":"https://github.com/schrojf/parcel-preact-ts-tailwindcss-template","last_synced_at":"2026-04-06T09:33:37.584Z","repository":{"id":317219928,"uuid":"1010128537","full_name":"schrojf/parcel-preact-ts-tailwindcss-template","owner":"schrojf","description":"⚡ Minimal Parcel + Preact + TypeScript + Tailwind CSS Starter Template  A modern, zero-config web development starter kit with blazing-fast builds and type safety. Perfect for building lightweight, performant web applications with the latest tools and best practices.","archived":false,"fork":false,"pushed_at":"2025-09-29T15:03:01.000Z","size":77,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-08T04:33:04.008Z","etag":null,"topics":["eslint","modern-tooling","parcel","postcss","preact","starter-template","tailwindcss","typescript","web-development","zero-config"],"latest_commit_sha":null,"homepage":"","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/schrojf.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-28T12:06:15.000Z","updated_at":"2025-09-29T15:03:06.000Z","dependencies_parsed_at":"2025-09-29T17:12:26.499Z","dependency_job_id":"5b9e6a6a-44ed-40ee-97e3-613db48b7432","html_url":"https://github.com/schrojf/parcel-preact-ts-tailwindcss-template","commit_stats":null,"previous_names":["schrojf/parcel-preact-ts-tailwindcss-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/schrojf/parcel-preact-ts-tailwindcss-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schrojf%2Fparcel-preact-ts-tailwindcss-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schrojf%2Fparcel-preact-ts-tailwindcss-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schrojf%2Fparcel-preact-ts-tailwindcss-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schrojf%2Fparcel-preact-ts-tailwindcss-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/schrojf","download_url":"https://codeload.github.com/schrojf/parcel-preact-ts-tailwindcss-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schrojf%2Fparcel-preact-ts-tailwindcss-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31466629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T08:36:52.050Z","status":"ssl_error","status_checked_at":"2026-04-06T08:36:51.267Z","response_time":112,"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":["eslint","modern-tooling","parcel","postcss","preact","starter-template","tailwindcss","typescript","web-development","zero-config"],"created_at":"2025-10-04T16:51:21.387Z","updated_at":"2026-04-06T09:33:37.558Z","avatar_url":"https://github.com/schrojf.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# parcel-preact-ts-tailwindcss-template\n\nA minimal, fast, and modern web development starter kit using **Parcel**, **Preact**, **TypeScript**, and **Tailwind CSS**.\n\n## 🚀 Quick Start\n\nClone this repo and install dependencies:\n\n```bash\n# Clone this repo\ngit clone https://github.com/schrojf/parcel-preact-ts-tailwindcss-template.git\ncd parcel-preact-ts-tailwindcss-template\n\n# Install dependencies\nnpm install\n\n# Start development server\nnpm start\n\n# Build for production\nnpm run build\n```\n\nOpen `http://localhost:1234` in your browser to see the app.\n\n## 🛠 Available Scripts\n\n- `npm start` – Start development server with hot reload\n- `npm run build` – Build optimized production bundle\n- `npm run lint` – Run ESLint to check code quality\n- `npm run lint:fix` – Fix ESLint issues automatically\n- `npm run check` – Run TypeScript type checking\n\n## 🎯 Features\n\n- ⚡ **Parcel** - Zero-config bundler with fast builds\n- ⚛️ **Preact** - Fast 3kB alternative to React\n- 🧠 **TypeScript** - Type-safe JavaScript development\n- 🎨 **Tailwind CSS** - Utility-first CSS framework\n- 📝 **ESLint** - Code linting and formatting\n- 🔧 **Modern Tooling** - Latest development tools and practices\n\n## 📁 Project Structure\n\n```\nmy-parcel-app/\n├── src/\n│   ├── app.tsx          # Main application component\n│   ├── main.tsx         # Application entry point\n│   ├── index.html       # HTML template\n│   ├── style.css        # Global styles\n│   └── assets/          # Static assets\n├── .postcssrc           # PostCSS configuration\n├── tailwind.config.js   # Tailwind CSS configuration\n├── tsconfig.json        # TypeScript configuration\n└── eslint.config.js     # ESLint configuration\n```\n\n## 🎨 Tailwind CSS Plugins\n\nThis starter includes useful Tailwind CSS plugins:\n- **@tailwindcss/typography** - Beautiful typography styles\n- **@tailwindcss/forms** - Better form element styling\n- **@tailwindcss/aspect-ratio** - Aspect ratio utilities\n\n## 🔧 Development\n\nThis is my personal minimal starter kit for building modern web applications. It's designed to be:\n\n- **Minimal** - Only essential dependencies\n- **Fast** - Optimized for development speed\n- **Modern** - Latest tools and best practices\n- **Type-safe** - Full TypeScript support\n- **Maintainable** - Clean, well-structured code\n\n## 📝 License\n\nThis project is licensed under the [MIT License](https://choosealicense.com/licenses/mit/).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fschrojf%2Fparcel-preact-ts-tailwindcss-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fschrojf%2Fparcel-preact-ts-tailwindcss-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fschrojf%2Fparcel-preact-ts-tailwindcss-template/lists"}