{"id":30328677,"url":"https://github.com/mapp-digital/mapp-fashion-reactnative-plugin-expo","last_synced_at":"2026-01-20T16:44:41.791Z","repository":{"id":309447214,"uuid":"1008481087","full_name":"mapp-digital/Mapp-Fashion-ReactNative-Plugin-Expo","owner":"mapp-digital","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-02T13:52:21.000Z","size":122,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-12T00:52:17.095Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mapp-digital.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2025-06-25T15:55:46.000Z","updated_at":"2025-07-02T14:43:35.000Z","dependencies_parsed_at":"2025-08-12T00:52:18.709Z","dependency_job_id":"373be2d2-7696-4487-8b04-85e3089f3b08","html_url":"https://github.com/mapp-digital/Mapp-Fashion-ReactNative-Plugin-Expo","commit_stats":null,"previous_names":["mapp-digital/mapp-fashion-reactnative-plugin-expo"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/mapp-digital/Mapp-Fashion-ReactNative-Plugin-Expo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mapp-digital%2FMapp-Fashion-ReactNative-Plugin-Expo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mapp-digital%2FMapp-Fashion-ReactNative-Plugin-Expo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mapp-digital%2FMapp-Fashion-ReactNative-Plugin-Expo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mapp-digital%2FMapp-Fashion-ReactNative-Plugin-Expo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mapp-digital","download_url":"https://codeload.github.com/mapp-digital/Mapp-Fashion-ReactNative-Plugin-Expo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mapp-digital%2FMapp-Fashion-ReactNative-Plugin-Expo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270932586,"owners_count":24670242,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-08-18T01:38:20.483Z","updated_at":"2026-01-20T16:44:41.766Z","avatar_url":"https://github.com/mapp-digital.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dressipi SDK Expo Storage\n\nA secure storage adapter plugin for the Dressipi SDK that provides mobile-optimized credential management using Expo SecureStore.\n\n## Overview\n\nThis plugin extends the Dressipi SDK with secure storage capabilities specifically designed for React Native applications using Expo. It provides a `SecureStoreAdapter` class that implements secure credential storage, retrieval, and management using Expo's SecureStore API.\n\nThe `SecureStoreAdapter` ensures that sensitive authentication data is stored securely on the device, leveraging the native keychain on iOS and the Android Keystore system on Android.\n\n## Installation\n\n### Prerequisites\n\nFirst, make sure you have the main Dressipi SDK installed:\n\n```bash\nnpm install mapp-fashion-react-native-sdk\n```\n\n### Install the Plugin\n\n```bash\nnpm install mapp-fashion-react-native-sdk-expo\n```\n\n### Install Expo SecureStore\n\nThis plugin requires Expo SecureStore as a peer dependency:\n\n```bash\nnpx expo install expo-secure-store\n```\n\n## Usage\n\n### Basic Setup\n\nImport the `SecureStoreAdapter` and pass it to your `DressipiProvider`:\n\n```typescript\nimport React from 'react';\nimport { DressipiProvider } from 'mapp-fashion-react-native-sdk';\nimport { SecureStoreAdapter } from 'mapp-fashion-react-native-sdk-expo';\n\nconst App = () =\u003e {\n  return (\n    \u003cDressipiProvider\n      namespaceId=\"your-namespace-id\"\n      domain=\"your-domain\"\n      clientId=\"your-client-id\"\n      storage={new SecureStoreAdapter()}\n    \u003e\n      {/* Your app content */}\n    \u003c/DressipiProvider\u003e\n  );\n};\n\nexport default App;\n```\n\n## Configuration\n\nThe `SecureStoreAdapter` works out of the box with no additional configuration required. The SDK will automatically handle:\n\n- Credential storage and retrieval\n- Token refresh management  \n- Secure cleanup on logout\n- Error handling and fallbacks\n\n## Requirements\n\n- React Native with Expo\n- iOS 10.0+ or Android API level 21+\n- Expo SecureStore (automatically handles platform requirements)\n\n## Troubleshooting\n\n### Common Issues\n\n**SecureStore not available**: Ensure you're running on a physical device or a simulator with keychain support. The iOS Simulator and Android Emulator support SecureStore.\n\n**Authentication errors**: Make sure your `clientId` and `domain` are correctly configured in the `DressipiProvider`.\n\n**Storage errors**: Check that your app has the necessary permissions and that SecureStore is properly installed.\n\n## Support\n\nFor issues related to this storage adapter, please check the main Dressipi SDK documentation or contact support.\n\n## License\n\nThis plugin follows the same license as the main Dressipi SDK.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmapp-digital%2Fmapp-fashion-reactnative-plugin-expo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmapp-digital%2Fmapp-fashion-reactnative-plugin-expo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmapp-digital%2Fmapp-fashion-reactnative-plugin-expo/lists"}