{"id":31262747,"url":"https://github.com/dennytosp/eas-local-cache","last_synced_at":"2026-05-08T19:32:39.204Z","repository":{"id":312814312,"uuid":"1048825741","full_name":"dennytosp/eas-local-cache","owner":"dennytosp","description":"⚡ A lightweight Expo plugin that speeds up local EAS builds by caching artifacts on your machine.","archived":false,"fork":false,"pushed_at":"2025-10-09T02:49:42.000Z","size":6,"stargazers_count":27,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-19T10:25:49.811Z","etag":null,"topics":["eas","expo","npm"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/eas-local-cache","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dennytosp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-02T04:54:59.000Z","updated_at":"2025-10-13T16:39:06.000Z","dependencies_parsed_at":"2025-09-02T07:22:18.333Z","dependency_job_id":"d905c87e-00ce-401d-af1c-9b88128e9c7e","html_url":"https://github.com/dennytosp/eas-local-cache","commit_stats":null,"previous_names":["dennytosp/eas-local-cache"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dennytosp/eas-local-cache","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dennytosp%2Feas-local-cache","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dennytosp%2Feas-local-cache/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dennytosp%2Feas-local-cache/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dennytosp%2Feas-local-cache/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dennytosp","download_url":"https://codeload.github.com/dennytosp/eas-local-cache/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dennytosp%2Feas-local-cache/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32794646,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["eas","expo","npm"],"created_at":"2025-09-23T11:53:21.926Z","updated_at":"2026-05-08T19:32:39.199Z","avatar_url":"https://github.com/dennytosp.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EAS Local Cache\n\n## Introduction\n\nEAS Local Cache is a library designed to optimize build times by caching build artifacts locally. This allows subsequent builds with the same configuration to reuse previously built artifacts instead of rebuilding them from scratch.\n\n## Installation\n\nTo install EAS Local Cache, select your preferred package manager:\n\n### npm\n\n```bash\nnpm install --save-dev eas-local-cache\n```\n\n### bun\n\n```bash\nbun add eas-local-cache -D\n```\n\nAdd the following configuration to your `app.config.ts`:\n\n```typescript\nexperiments: {\n  typedRoutes: true,\n  buildCacheProvider: {\n    plugin: 'eas-local-cache',\n  },\n}\n```\n\n## How It Works\n\nEAS Local Cache implements two main functions:\n\n1. **Resolving Build Cache**: Checks if a build with the same fingerprint already exists in the cache.\n2. **Uploading Build Cache**: Stores successful builds in the cache for future use.\n\nThe system generates a unique fingerprint hash for each build configuration. If the exact same configuration is built again, the cached version will be used, significantly reducing build times.\n\n## Features\n\n- **Cross-Platform Support**: Works with both iOS and Android builds.\n- **Intelligent File Handling**: Properly handles both directory structures (iOS .app bundles) and single files (Android .apk).\n- **Reliable Copying**: Uses platform-specific copy mechanisms for maximum reliability.\n\n## Cache Storage\n\nBuild artifacts are stored in the `.expo/cache` directory at the project root.\n\nFiles are named according to the pattern:\n\n- iOS: `ios_[fingerprintHash].app`\n- Android: `android_[fingerprintHash].apk`\n\n## Usage\n\nEAS Local Cache is automatically used by Expo when building your application. No additional configuration is required.\n\nTo clear the cache manually, you can delete the `.expo/cache` directory in your project root:\n\n```bash\nrm -rf .expo/cache\n```\n\n## Troubleshooting\n\nIf you're experiencing issues with cached builds:\n\n1. Check file permissions in the cache directory.\n2. Verify that the cache directory has sufficient disk space.\n3. Clear the cache directory and try again.\n\n## Contributing\n\nTo contribute to this library:\n\n1. Make changes to the implementation in `eas-local-cache`.\n2. Test with various build configurations.\n3. Submit pull requests with clear descriptions of changes and benefits.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdennytosp%2Feas-local-cache","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdennytosp%2Feas-local-cache","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdennytosp%2Feas-local-cache/lists"}