A high-performance modern monorepo powering web, desktop, mobile, documentation, and backend API services.
Kivo is an enterprise-grade fullstack ecosystem engineered with Turborepo and pnpm workspaces. It brings together web applications, native desktop applications, cross-platform mobile apps, shared UI design systems, and modular backend API services (with PostgreSQL pooling, Google GenAI Gemini, and S3 object storage) in a unified, type-safe repository.
kivo/
├── apps/
│ ├── web/ # Next.js 16 Web Application with Tailwind CSS v4 & Lucide (Port 3000)
│ ├── desktop/ # Electron 30 + Vite + React 19 Desktop Client
│ ├── mobile/ # Expo SDK 57 & React Native Mobile App (iOS / Android / Web)
│ └── api/ # Express 5 + PostgreSQL (pg) + Gemini AI + S3 Storage + Google OAuth (Port 5000)
├── packages/
│ ├── ui/ # Shared 60+ shadcn UI Component Library (@repo/ui)
│ ├── typescript-config/ # Monorepo TypeScript presets (@repo/typescript-config)
│ └── eslint-config/ # Monorepo ESLint presets (@repo/eslint-config)
├── assets/ # Official brand identity & vector assets
├── .github/ # Issue templates, PR template & automated CI workflows
└── .vscode/ # Recommended workspace settings & extensions
| Application | Technology Stack | Description | Dev Command | Port / Output |
|---|---|---|---|---|
web |
Next.js 16 (App Router), React 19, Tailwind CSS v4 | High-performance responsive web client | pnpm --filter web dev |
http://localhost:3000 |
desktop |
Electron 30, Vite 5, React 19, Tailwind CSS v4 | Native cross-platform desktop application | pnpm --filter desktop dev |
Electron Desktop Window |
mobile |
Expo SDK 57, React Native 0.86, Expo Router | Cross-platform mobile app (iOS, Android, Web) | pnpm --filter mobile start |
Expo Metro Bundler |
api |
Express 5, PostgreSQL (pg), Google GenAI (@google/genai), AWS S3 SDK, Passport.js |
REST API service with database pooling, Gemini AI text/streaming, and S3 storage | pnpm --filter api dev |
http://localhost:5000 |
@repo/ui: Centralized component library featuring 60+ shadcn UI components built with OKLCH theme tokens, accessible primitives, and Tailwind CSS v4 compatibility.@repo/typescript-config: Centralized TypeScript configurations (base.json,nextjs.json,react-library.json).@repo/eslint-config: Shared ESLint rules (base,next-js,react-internal).
Ensure the following tools are installed on your environment:
- Node.js:
>= 24.0.0 - pnpm:
>= 11.0.0(Enable viacorepack enable pnpmor install globally vianpm install -g pnpm)
git clone https://github.com/ichshakib/kivo.git
cd kivopnpm installRun all applications and services in parallel:
pnpm devOr target individual applications:
# Start Web client
pnpm --filter web dev
# Start Desktop client
pnpm --filter desktop dev
# Start Mobile app
pnpm --filter mobile start
# Start Backend API
pnpm --filter api dev| Script | Command | Description |
|---|---|---|
pnpm dev |
turbo run dev |
Start development servers across all workspaces |
pnpm build |
turbo run build |
Build all apps and packages with dependency caching |
pnpm lint |
turbo run lint |
Run ESLint across all projects |
pnpm check-types |
turbo run check-types |
Run static TypeScript type checks |
pnpm format |
prettier --write "**/*.{ts,tsx,md}" |
Format source code and documentation |
We welcome contributions from the community! Please read our Contributing Guide and Code of Conduct before submitting pull requests.
- Fork the project.
- Create your feature branch (
git checkout -b feature/amazing-feature). - Commit your changes using conventional commit messages (
git commit -m 'feat: add amazing feature'). - Push to the branch (
git push origin feature/amazing-feature). - Open a Pull Request using our PR Template.
For questions, collaborations, feature proposals, or security inquiries:
- Author: Shakib Khan
- GitHub: @ichshakib
- Email: ichshakib@gmail.com
- Repository: https://github.com/ichshakib/kivo
- Issues & Discussions: GitHub Issues
This project is licensed under the MIT License - see the LICENSE file for details.