{"id":42399802,"url":"https://github.com/lodev09/expo-recorder","last_synced_at":"2026-01-28T01:14:25.944Z","repository":{"id":239584757,"uuid":"799921057","full_name":"lodev09/expo-recorder","owner":"lodev09","description":"Audio recorder for your React Native apps 🎙️","archived":false,"fork":false,"pushed_at":"2025-01-24T19:43:12.000Z","size":11200,"stargazers_count":55,"open_issues_count":3,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-12T15:56:38.341Z","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/lodev09.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2024-05-13T11:10:16.000Z","updated_at":"2025-08-09T19:02:52.000Z","dependencies_parsed_at":"2024-05-16T09:37:16.154Z","dependency_job_id":null,"html_url":"https://github.com/lodev09/expo-recorder","commit_stats":null,"previous_names":["lodev09/expo-recorder"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/lodev09/expo-recorder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Fexpo-recorder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Fexpo-recorder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Fexpo-recorder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Fexpo-recorder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lodev09","download_url":"https://codeload.github.com/lodev09/expo-recorder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Fexpo-recorder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28831241,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T23:29:49.665Z","status":"ssl_error","status_checked_at":"2026-01-27T23:25:58.379Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2026-01-28T01:14:25.207Z","updated_at":"2026-01-28T01:14:25.928Z","avatar_url":"https://github.com/lodev09.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Expo Recorder\n\nAudio recorder for your React Native apps 🎙️\u003cbr\u003e\nThis is a wrapper component that implements [Expo Audio](https://docs.expo.dev/versions/latest/sdk/audio/) and features an animated waveform for your recording needs. 💪\n\n\u003cimg alt=\"Expo Recorder\" src=\"preview.gif\" width=\"300px\" /\u003e\n\n\u003e [!NOTE]\n\u003e This package is mostly subjective and might not fit your use case and/or design.\n\u003e\n\u003e I will try to make this as generic as possible, but if you want a very customized experience, feel free to copy its code and customize it the way you want. Alternatively, you could submit a PR if you think it will help the general public. See the [contributing guide](CONTRIBUTING.md) to get started.\n\n## Installation\n\n```sh\nnpx expo install @lodev09/expo-recorder\n```\n\n### Dependencies\n\n```sh\nnpx expo install expo-audio react-native-reanimated react-native-gesture-handler\n```\n\nYou might want to check out the individual installation instructions from this package's dependencies.\n\n* [`expo-audio`](https://docs.expo.dev/versions/latest/sdk/audio/)\n* [`react-native-reanimated`](https://docs.swmansion.com/react-native-reanimated/)\n* [`react-native-gesture-handler`](https://docs.swmansion.com/react-native-gesture-handler/docs/)\n\n## Usage\n\n```tsx\nimport { View, Button, Alert } from 'react-native'\nimport { Recorder, type RecorderRef } from '@lodev09/expo-recorder'\nimport { Audio } from \"expo-av\";\n\nconst App = () =\u003e {\n  const recorder = useRef\u003cRecorderRef\u003e(null)\n\n  const startRecording = async () =\u003e {\n    try {\n      const permission = await Audio.requestPermissionsAsync();\n      if (permission.status !== \"granted\") {\n        Alert.alert(\n          \"Permission required\",\n          \"Audio recording permission is required\"\n        );\n        return;\n      }\n\n      const record = await recorder.current?.startRecording();\n      console.log(record?.uri);\n    } catch (error) {\n      console.error(error);\n    }\n  };\n\n  const stopRecording = async () =\u003e {\n    const record = await recorder.current?.stopRecording()\n    console.log(record.uri) // Save the uri somewhere! 🎉\n  }\n\n  return (\n    \u003cView\u003e\n      \u003cRecorder ref={recorder} /\u003e\n      \u003cButton title=\"Record\" onPress={startRecording} /\u003e\n      \u003cButton title=\"Stop\" onPress={stopRecording} /\u003e\n    \u003c/View\u003e\n  )\n}\n```\n\nFor complete usage, see [example](example/components/ThemedRecorderSheet.tsx).\n\nAlso check out [`react-native-true-sheet`](https://github.com/lodev09/react-native-true-sheet), the **Bottom Sheet** used in this example.\n\n## Contributing\n\nSee the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n\n---\n\nMade with ❤️ by [@lodev09](http://linkedin.com/in/lodev09/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flodev09%2Fexpo-recorder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flodev09%2Fexpo-recorder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flodev09%2Fexpo-recorder/lists"}