{"id":29130501,"url":"https://github.com/jaberchowdhury/profast","last_synced_at":"2026-04-11T17:46:11.805Z","repository":{"id":301840946,"uuid":"1010460985","full_name":"JaberChowdhury/profast","owner":"JaberChowdhury","description":"Profast is a modern, full-stack React application template designed for fast parcel delivery and logistics services. It leverages React Router for routing, TailwindCSS for styling, and includes a beautiful Catppuccin theme switcher for a customizable user experience.","archived":false,"fork":false,"pushed_at":"2025-07-23T20:32:45.000Z","size":157,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-23T23:11:33.863Z","etag":null,"topics":["catppuccin","catppuccin-theme","expressjs","nodejs","nodemon","react","react-router","shadcn-ui","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"https://profast-gamma.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/JaberChowdhury.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}},"created_at":"2025-06-29T05:48:12.000Z","updated_at":"2025-07-23T20:32:49.000Z","dependencies_parsed_at":"2025-06-29T06:49:00.725Z","dependency_job_id":null,"html_url":"https://github.com/JaberChowdhury/profast","commit_stats":null,"previous_names":["jaberchowdhury/profast"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JaberChowdhury/profast","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaberChowdhury%2Fprofast","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaberChowdhury%2Fprofast/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaberChowdhury%2Fprofast/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaberChowdhury%2Fprofast/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JaberChowdhury","download_url":"https://codeload.github.com/JaberChowdhury/profast/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaberChowdhury%2Fprofast/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268338264,"owners_count":24234540,"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-08-02T02:00:12.353Z","response_time":74,"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":["catppuccin","catppuccin-theme","expressjs","nodejs","nodemon","react","react-router","shadcn-ui","tailwindcss","typescript"],"created_at":"2025-06-30T04:05:57.358Z","updated_at":"2026-04-11T17:46:11.799Z","avatar_url":"https://github.com/JaberChowdhury.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Profast\n\nProfast is a modern, full-stack React application template designed for fast parcel delivery and logistics services. It leverages React Router for routing, TailwindCSS for styling, and includes a beautiful Catppuccin theme switcher for a customizable user experience.\n\n## Features\n\n- 🚀 **Server-side rendering** with React Router\n- ⚡️ **Hot Module Replacement (HMR)** for rapid development\n- 🎨 **Catppuccin theme switcher** (Latte, Frappe, Macchiato, Mocha)\n- 📦 **Asset bundling and optimization**\n- 🔄 **Data loading and mutations**\n- 🔒 **TypeScript** by default\n- 💅 **TailwindCSS** and shadcn/ui for modern UI components\n- 🗺️ **Parcel delivery, reviews, and warehouse data**\n\n## Getting Started\n\n### Installation\n\nInstall dependencies:\n\n```bash\npnpm install\n# or\nnpm install\n```\n\n### Development\n\nStart the development server:\n\n```bash\npnpm run dev\n# or\nnpm run dev\n```\n\nVisit [http://localhost:5173](http://localhost:5173) in your browser.\n\n### Building for Production\n\nCreate a production build:\n\n```bash\npnpm run build\n# or\nnpm run build\n```\n\n### Docker Deployment\n\nBuild and run using Docker:\n\n```bash\ndocker build -t profast .\ndocker run -p 3000:3000 profast\n```\n\n## Project Structure\n\n```\n├───.react-router\n│   └───types\n│       └───app\n│           ├───+types\n│           └───routes\n│               └───+types\n├───.vercel\n├───app\n│   ├───components\n│   │   ├───custom\n│   │   └───ui\n│   ├───lib\n│   ├───routes\n│   ├───src\n│   │   ├───data\n│   │   └───json\n│   └───welcome\n├───build\n│   ├───client\n│   │   ├───assets\n│   │   └───resources\n│   │       ├───animations\n│   │       └───assets\n│   │           ├───banner\n│   │           └───brands\n│   └───server\n│       └───nodejs_eyJydW50aW1lIjoibm9kZWpzIn0\n│           └───.vite\n└───public\n    └───resources\n        ├───animations\n        └───assets\n            ├───banner\n            └───brands\n```\n\n## Styling \u0026 Theming\n\n- Uses **TailwindCSS** for utility-first styling\n- **Catppuccin** color palette with four variants\n- Theme switcher in the UI (top-right corner)\n- Customizable via CSS variables in `app/app.css`\n\n## Scripts\n\n- `dev` - Start development server\n- `build` - Build for production\n- `start` - Start production server\n- `typecheck` - TypeScript type checking\n\n## Credits\n\n- [React Router](https://reactrouter.com/)\n- [TailwindCSS](https://tailwindcss.com/)\n- [shadcn/ui](https://ui.shadcn.com/)\n- [Catppuccin](https://catppuccin.com/)\n\n---\n\n**Profast** – Fast, modern, and beautiful parcel delivery platform starter.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaberchowdhury%2Fprofast","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaberchowdhury%2Fprofast","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaberchowdhury%2Fprofast/lists"}