{"id":48275291,"url":"https://github.com/oovz/expo-edge-speech","last_synced_at":"2026-04-04T22:27:56.147Z","repository":{"id":304428366,"uuid":"1018798956","full_name":"oovz/expo-edge-speech","owner":"oovz","description":"Microsoft Edge text-to-speech for Expo and React Native","archived":false,"fork":false,"pushed_at":"2025-07-14T09:20:35.000Z","size":651,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-26T00:09:53.957Z","etag":null,"topics":["expo","microsoft","multilanguage","react-native","text-to-speech"],"latest_commit_sha":null,"homepage":"https://oovz.github.io/expo-edge-speech/","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/oovz.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-07-13T04:21:02.000Z","updated_at":"2025-07-14T09:20:39.000Z","dependencies_parsed_at":"2025-07-13T04:35:41.392Z","dependency_job_id":null,"html_url":"https://github.com/oovz/expo-edge-speech","commit_stats":null,"previous_names":["oovz/expo-edge-speech"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/oovz/expo-edge-speech","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oovz%2Fexpo-edge-speech","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oovz%2Fexpo-edge-speech/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oovz%2Fexpo-edge-speech/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oovz%2Fexpo-edge-speech/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oovz","download_url":"https://codeload.github.com/oovz/expo-edge-speech/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oovz%2Fexpo-edge-speech/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31416768,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"last_error":"SSL_read: 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":["expo","microsoft","multilanguage","react-native","text-to-speech"],"created_at":"2026-04-04T22:27:55.513Z","updated_at":"2026-04-04T22:27:56.135Z","avatar_url":"https://github.com/oovz.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# expo-edge-speech\n*Microsoft Edge text-to-speech for Expo and React Native*\n\n[![Version](https://img.shields.io/npm/v/expo-edge-speech)](https://www.npmjs.com/package/expo-edge-speech)\n[![License](https://img.shields.io/npm/l/expo-edge-speech)](https://github.com/oovz/expo-edge-speech/blob/master/LICENSE)\n[![Downloads](https://img.shields.io/npm/dm/expo-edge-speech)](https://www.npmjs.com/package/expo-edge-speech)\n[![GitHub Stars](https://img.shields.io/github/stars/oovz/expo-edge-speech?style=social)](https://github.com/oovz/expo-edge-speech)\n\n## Description\n\nexpo-edge-speech is a text-to-speech library for Expo and React Native applications that provides high-quality voice synthesis using Microsoft's Edge TTS service. It offers a drop-in replacement for expo-speech with enhanced features including 400+ natural voices, better voice quality, word boundary events, and cross-platform support for both iOS and Android.\n\n## Installation\n\n### For Expo Projects\n\n```bash\nnpm install expo-edge-speech\n```\n\n### For React Native Projects\n\nReact Native projects need Expo to use this library (and its dependencies):\n\n```bash\n# Install Expo (if not already installed)\nnpm install expo@sdk-52\n\n# Install the library\nnpm install expo-edge-speech\n```\n\n### Requirements\n\n- **Expo SDK 52** or higher\n- **iOS 15.1+** / **Android API 24+**\n- **React Native 0.76.9+**\n\n## Usage\n\n```typescript\nimport * as Speech from 'expo-edge-speech';\n\n// Basic text-to-speech\nawait Speech.speak('Hello world');\n\n// With options\nawait Speech.speak('Welcome to my app!', {\n  voice: 'en-US-AriaNeural',\n  rate: 1.2,\n  onDone: () =\u003e console.log('Speech completed')\n});\n```\n\n## Development\n\nTo contribute to this project:\n\n```bash\n# Clone the repository\ngit clone https://github.com/oovz/expo-edge-speech.git\n\n# Install dependencies\ncd expo-edge-speech\nyarn install\n\n# Run development server (tsc:watch)\nyarn dev\n\n# Run example app\ncd example-app\nnpx expo start\n```\n\n## Credit\n\n**Created by** [Otaro](https://github.com/oovz)\n\n**Built with:**\n- [expo-av](https://docs.expo.dev/versions/latest/sdk/av/) - Audio playback functionality\n- [expo-crypto](https://docs.expo.dev/versions/latest/sdk/crypto/) - Cryptographic operations\n- [expo-file-system](https://docs.expo.dev/versions/latest/sdk/filesystem/) - File management and caching\n- [edge-tts](https://github.com/rany2/edge-tts) - Edge TTS Python library\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foovz%2Fexpo-edge-speech","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foovz%2Fexpo-edge-speech","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foovz%2Fexpo-edge-speech/lists"}