[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-71347":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":19,"rankGlobal":10,"rankLanguage":10,"license":20,"archived":21,"fork":21,"defaultBranch":22,"hasWiki":21,"hasPages":21,"topics":23,"createdAt":10,"pushedAt":10,"updatedAt":39,"readmeContent":40,"aiSummary":41,"trendingCount":16,"starSnapshotCount":16,"syncStatus":42,"lastSyncTime":43,"discoverSource":44},71347,"next-forge","vercel\u002Fnext-forge","vercel","Production-grade Turborepo template for Next.js apps.","https:\u002F\u002Fwww.next-forge.com\u002F",null,"TypeScript",7091,657,23,11,0,7,26,39.45,"MIT License",false,"main",[24,25,26,27,28,29,30,31,32,33,34,35,36,37,38],"betterstack","boilerplate","clerk","dark-mode","feature-flags","neon","nextjs","posthog","prisma","react","sentry","seo","stripe","tailwindcss","typescript","2026-06-12 02:02:51","# ▲ \u002F next-forge\n\n**Production-grade Turborepo template for Next.js apps.**\n\n\u003Cdiv>\n  \u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fnpm\u002Fdy\u002Fnext-forge\" alt=\"\" \u002F>\n  \u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fnpm\u002Fv\u002Fnext-forge\" alt=\"\" \u002F>\n  \u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Flicense\u002Fvercel\u002Fnext-forge\" alt=\"\" \u002F>\n\u003C\u002Fdiv>\n\n## Overview\n\n[next-forge](https:\u002F\u002Fgithub.com\u002Fvercel\u002Fnext-forge) is a production-grade [Turborepo](https:\u002F\u002Fturborepo.com) template for [Next.js](https:\u002F\u002Fnextjs.org\u002F) apps. It's designed to be a comprehensive starting point for building SaaS applications, providing a solid, opinionated foundation with minimal configuration required.\n\nBuilt on a decade of experience building web applications, next-forge balances speed and quality to help you ship thoroughly-built products faster.\n\n### Philosophy\n\nnext-forge is built around five core principles:\n\n- **Fast** — Quick to build, run, deploy, and iterate on\n- **Cheap** — Free to start with services that scale with you\n- **Opinionated** — Integrated tooling designed to work together\n- **Modern** — Latest stable features with healthy community support\n- **Safe** — End-to-end type safety and robust security posture\n\n## Demo\n\nExperience next-forge in action:\n\n- [Web](https:\u002F\u002Fdemo.next-forge.com) — Marketing website\n- [App](https:\u002F\u002Fapp.demo.next-forge.com) — Main application\n- [Storybook](https:\u002F\u002Fstorybook.demo.next-forge.com) — Component library\n- [API](https:\u002F\u002Fapi.demo.next-forge.com\u002Fhealth) — API health check\n\n## Features\n\nnext-forge comes with batteries included:\n\n### Apps\n\n- **Web** — Marketing site built with Tailwind CSS and TWBlocks\n- **App** — Main application with authentication and database integration\n- **API** — RESTful API with health checks and monitoring\n- **Docs** — Documentation site powered by Mintlify\n- **Email** — Email templates with React Email\n- **Storybook** — Component development environment\n\n### Packages\n\n- **Authentication** — Powered by [Clerk](https:\u002F\u002Fclerk.com)\n- **Database** — Type-safe ORM with migrations\n- **Design System** — Comprehensive component library with dark mode\n- **Payments** — Subscription management via [Stripe](https:\u002F\u002Fstripe.com)\n- **Email** — Transactional emails via [Resend](https:\u002F\u002Fresend.com)\n- **Analytics** — Web ([Google Analytics](https:\u002F\u002Fdevelopers.google.com\u002Fanalytics)) and product ([Posthog](https:\u002F\u002Fposthog.com))\n- **Observability** — Error tracking ([Sentry](https:\u002F\u002Fsentry.io)), logging, and uptime monitoring ([BetterStack](https:\u002F\u002Fbetterstack.com))\n- **Security** — Application security ([Arcjet](https:\u002F\u002Farcjet.com)), rate limiting, and secure headers\n- **CMS** — Type-safe content management for blogs and documentation\n- **SEO** — Metadata management, sitemaps, and JSON-LD\n- **AI** — AI integration utilities\n- **Webhooks** — Inbound and outbound webhook handling\n- **Collaboration** — Real-time features with avatars and live cursors\n- **Feature Flags** — Feature flag management\n- **Cron** — Scheduled job management\n- **Storage** — File upload and management\n- **Internationalization** — Multi-language support\n- **Notifications** — In-app notification system\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 20+\n- [Bun](https:\u002F\u002Fbun.sh) (or npm\u002Fyarn\u002Fpnpm)\n- [Stripe CLI](https:\u002F\u002Fdocs.stripe.com\u002Fstripe-cli) for local webhook testing\n\n### Installation\n\nCreate a new next-forge project:\n\n```sh\nnpx next-forge@latest init\n```\n\n### Setup\n\n1. Configure your environment variables\n2. Set up required service accounts (Clerk, Stripe, Resend, etc.)\n3. Run the development server\n\nFor detailed setup instructions, read the [documentation](https:\u002F\u002Fwww.next-forge.com\u002Fdocs).\n\n## Structure\n\nnext-forge uses a monorepo structure managed by Turborepo:\n\n```\nnext-forge\u002F\n├── apps\u002F           # Deployable applications\n│   ├── web\u002F        # Marketing website (port 3001)\n│   ├── app\u002F        # Main application (port 3000)\n│   ├── api\u002F        # API server\n│   ├── docs\u002F       # Documentation\n│   ├── email\u002F      # Email templates\n│   └── storybook\u002F  # Component library\n└── packages\u002F       # Shared packages\n    ├── design-system\u002F\n    ├── database\u002F\n    ├── auth\u002F\n    └── ...\n```\n\nEach app is self-contained and independently deployable. Packages are shared across apps for consistency and maintainability.\n\n## Documentation\n\nFull documentation is available at [next-forge.com\u002Fdocs](https:\u002F\u002Fwww.next-forge.com\u002Fdocs), including:\n\n- Detailed setup guides\n- Package documentation\n- Migration guides for swapping providers\n- Deployment instructions\n- Examples and recipes\n\n## Contributing\n\nWe welcome contributions! See the [contributing guide](https:\u002F\u002Fgithub.com\u002Fvercel\u002Fnext-forge\u002Fblob\u002Fmain\u002F.github\u002FCONTRIBUTING.md) for details.\n\n## Contributors\n\n\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fnext-forge\u002Fgraphs\u002Fcontributors\">\n  \u003Cimg src=\"https:\u002F\u002Fcontrib.rocks\u002Fimage?repo=vercel\u002Fnext-forge\" \u002F>\n\u003C\u002Fa>\n\nMade with [contrib.rocks](https:\u002F\u002Fcontrib.rocks).\n\n## License\n\nMIT\n","next-forge 是一个为 Next.js 应用设计的生产级 Turborepo 模板。它集成了 Clerk 认证、Prisma 数据库 ORM、Tailwind CSS 等多种现代工具，提供了一个全面且配置简单的 SaaS 应用开发起点。项目遵循快速构建与部署、低成本起步、集成化工具链、使用最新稳定技术及注重安全性的原则。适用于需要快速搭建并迭代高质量 SaaS 产品的场景，如营销网站、主应用程序、RESTful API 以及文档站点等。",2,"2026-06-11 03:37:17","high_star"]