•6 min read
My Indie Developer Tech Stack for 2026
The tools, frameworks, and services I use to build and ship apps as a solo developer.
Indie DevToolsProductivity
As an indie developer, choosing the right tools matters. Here's my current stack for building web, mobile, and desktop apps.
Mobile Development
React Native for cross-platform apps
- Expo for managed workflow when possible
- Bare React Native when I need native modules
- Better for menu bar apps and deep system integration
- Required for widgets and App Clips
Web Development
Next.js for everything web
- Static export for simple sites (like this one)
- Server components for dynamic apps
- Vercel for deployment
- Fast iteration
- Consistent design system
- Works great with dark mode
Backend
Supabase for most projects
- PostgreSQL database
- Authentication built-in
- Real-time subscriptions
- Edge functions for serverless
- Push notifications
- Analytics
- Remote config
Desktop (macOS)
Swift + SwiftUI for native feel
- Menu bar apps
- System extensions
- Native performance
Development Tools
VS Code with:
- GitHub Copilot
- ESLint + Prettier
- Thunder Client (API testing)
Android Studio for Android-specific debugging
Design
Figma for UI design and prototypes
SF Symbols for icons (Apple platforms)
Heroicons for web icons
Analytics & Monitoring
Mixpanel for product analytics
- User behavior tracking
- Funnel analysis
- Crash reports
- Performance monitoring
Revenue & Payments
RevenueCat for in-app purchases
- Works on iOS and Android
- Handles receipt validation
- Great dashboard
Productivity
Linear for task management
- Fast and keyboard-driven
- Good GitHub integration
GitHub for code hosting
Raycast for Mac productivity
- Quick launcher
- Clipboard history
- Custom scripts
Deployment
Vercel for web apps
- Automatic deployments
- Edge functions
- Analytics
- TestFlight for beta testing
Cost Breakdown (Monthly)
| Service | Cost |
|---|---|
| Apple Developer | $8.25 ($99/year) |
| Google Play | One-time $25 |
| Vercel | $0 (hobby plan) |
| Supabase | $0-25 |
| RevenueCat | $0 (under $2.5k MRR) |
| Sentry | $0 (free tier) |
| Figma | $0 (free tier) |
| Total | ~$35/month |
What I Don't Use
- AWS/GCP (too complex for indie scale)
- Redux (React's built-in state is enough)
- Styled Components (Tailwind is faster)
- Custom authentication (use Supabase/Firebase)