{"id":15069950,"url":"https://github.com/cawfree/react-native-quiet","last_synced_at":"2026-03-07T05:05:41.669Z","repository":{"id":35619175,"uuid":"218401529","full_name":"cawfree/react-native-quiet","owner":"cawfree","description":"🤫 Quiet for React Native.","archived":false,"fork":false,"pushed_at":"2023-01-04T23:48:31.000Z","size":841,"stargazers_count":175,"open_issues_count":21,"forks_count":21,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-15T05:03:48.203Z","etag":null,"topics":["audio","chirp","data","quiet","quietjs","react","react-native","send","transmit","ultrasonic"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/cawfree.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}},"created_at":"2019-10-29T23:18:51.000Z","updated_at":"2025-01-01T16:53:19.000Z","dependencies_parsed_at":"2023-01-16T01:16:10.042Z","dependency_job_id":null,"html_url":"https://github.com/cawfree/react-native-quiet","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cawfree/react-native-quiet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cawfree%2Freact-native-quiet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cawfree%2Freact-native-quiet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cawfree%2Freact-native-quiet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cawfree%2Freact-native-quiet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cawfree","download_url":"https://codeload.github.com/cawfree/react-native-quiet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cawfree%2Freact-native-quiet/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261652949,"owners_count":23190369,"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","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":["audio","chirp","data","quiet","quietjs","react","react-native","send","transmit","ultrasonic"],"created_at":"2024-09-25T01:45:53.123Z","updated_at":"2026-03-07T05:05:41.636Z","avatar_url":"https://github.com/cawfree.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-native-quiet\n\nThis is a [**React Native**](https://facebook.github.io/react-native/) wrapper around the [**Quiet Project**](https://github.com/quiet/quiet), which enables the transfer of data using sound as the transfer medium. This has a number of benefits:\n\n  - Super cross-platform. (You just need a microphone and a speaker.)\n  - Broadcast to devices within range without pairing.\n  - No network connection required.\n\nQuiet can even go _ultrasonic_, allowing us to communicate without impacting on noise levels that are perceptible by human ears.\n\nTry the awesome online demo [**here**](https://quiet.github.io/quiet-js/).\n\n## 🚀 Getting started\n\nUsing [`npm`]():\n\n```bash\n$ npm install react-native-quiet --save\n```\n\nUsing [`yarn`]():\n\n```bash\nyarn add react-native-quiet\n```\n\n#### Android\n\nThis project relies upon the [**Android NDK**](https://developer.android.com/ndk); please make sure this is configured within your system path. Android relies upon caching the [**Quiet Android Project**](https://github.com/quiet/org.quietmodem.Quiet), meaning that we have to manually configure it's visibility to your compiled application. To do this, in your `\u003cproject-dir\u003e/android/settings.gradle`, append the `:quiet` native project, which is packaged inside of `react-native-quiet`:\n\n```java\ninclude ':quiet'\nproject(':quiet').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-quiet/android/Transducer/quiet')\n```\n\nFinally, under **File \u003e Project Structure**, be sure to define your `Android NDK location` under **SDK Location**. You can just use the dropdown to select the default location.\n\n#### iOS\n\nOn iOS, after installing be sure to sync your Cocoapods via `pod install`.\n\n### Upgrading\n\n#### 0.1.0\n\n**android/settings.xml**\n```diff\n\ninclude ':quiet'\n- project(':quiet').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-quiet/android/org.quietmodem.Quiet/quiet')\n+ project(':quiet').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-quiet/android/Transducer/quiet')\n```\n\n## ✍️ Example\n\nThis project exposes high level functionality to send and receive messages using near-ultrasound. Simply start the library, use `send()` to transmit a message string and `addListener` to listen to receive sent messages. Be careful; you can hear your own messages.\n\n```javascript\nimport Quiet from 'react-native-quiet';\n\n// Start listening. (This will ask for microphone permissions!)\n(async() =\u003e {\n  await Quiet.start(\"ultrasonic-experimental\");\n  const { unsubscribe } = Quiet\n    .addListener(msg =\u003e console.warn(msg));\n  Quiet.send(\"hello, world!\");\n  await new Promise(resolve =\u003e setTimeout(resolve, 10000));\n  Quiet.stop();\n  unsubscribe();\n})();\n```\n\n### ✌️ License\n[**MIT**](https://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcawfree%2Freact-native-quiet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcawfree%2Freact-native-quiet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcawfree%2Freact-native-quiet/lists"}