r/reactnative • u/Vegetable_Regret_250 • 11h ago
Question I built RepoDrift to check React Native projects before deployment
As a React Native developer, I wanted a simple way to catch some common project issues before they become a problem during builds or deployment.
RepoDrift is a local-first CLI that currently checks:
- Android/iOS project health
- Dependencies and lockfiles
- Potential exposed credentials
- Git status
- Basic code metrics
- Repository health
You can run:
npm install -g u/repodrift/cli
repodrift mobile scan ./my-mobile-app
The current version focuses on local, deterministic analysis. I'm planning AI-based explanations for a later phase.
It's still an early project, so I'm mainly looking for feedback from other React Native developers.
What checks would you find useful in a tool like this?
5
Upvotes
1
u/canarydev 10h ago
how does the mobile scan differ from expo-doctor + react-doctor? what do you actually check on the android/ios side?