Twending is a new way to view trending repositories from github.
- TypeScript - For type safety and improved developer experience
- TanStack Start - SSR framework with TanStack Router
- TailwindCSS - Utility-first CSS for rapid UI development
- shadcn/ui - Reusable UI components
- tRPC - End-to-end type-safe APIs
- Vitest - Minimal and fast testing
First, install the dependencies:
pnpm installThen, run the development server:
pnpm run devOpen http://localhost:3000 in your browser to see the web application.
twending/
├── apps/
│ └── web/ # Fullstack application (React + TanStack Start)
├── packages/
│ ├── api/ # API layer / business logic
pnpm run dev: Start all applications in development modepnpm run build: Build all applicationspnpm run check-types: Check TypeScript types across all appspnpm run check: Lint all codepnpm run fix: Fix lint errorspnpm run test: Runs the test suitepnpm run test:coverage: Runs the test suite with coverage metrics

