expo-build-disk-cache [![npm][npm-image]][npm-url] ![npm][npm-dl-stats]
July 28, 2026 · View on GitHub
⚡ Drastically speed up your
npx expo run:androidornpx expo run:iosbuilds!
expo-build-disk-cache enables local disk caching for Expo builds.
When a cached build is available, it launches almost instantly — skipping the usual compilation step.
🚀 Quick Start
Requirements
- Expo SDK 53+
Installation
npm install --save-dev expo-build-disk-cache
Add to Your App Config
Expo SDK 54+
{
"buildCacheProvider": {
"plugin": "expo-build-disk-cache"
}
}
Expo SDK 53
{
"experiments": {
"buildCacheProvider": {
"plugin": "expo-build-disk-cache"
}
}
}
⚠️ Only
expo run:android/expo run:iosuse Expo's build cache provider. Builds run viaexpo prebuild+ Gradle/Xcode/Fastlane/EAS are not cached (#24).
See the full Configuration Guide for advanced options, cache cleanup, CI setup, and remote caching.
📦 Releases
This repo uses Changesets.
- For any user-facing package change, run
bun run changesetand commit the generated file in.changeset/. - When changesets reach
main, GitHub Actions opens or updates a release PR with the version bump and generatedCHANGELOG.md. - Merge that release PR to publish to npm.
🤝 Acknowledgments
Huge thanks to the Expo team for making this possible and for their incredible open-source work.