{"id":23989618,"url":"https://github.com/thewoowon/react-native-daum-postcode","last_synced_at":"2026-02-06T13:03:48.972Z","repository":{"id":270780868,"uuid":"910832262","full_name":"thewoowon/react-native-daum-postcode","owner":"thewoowon","description":"react native 다음 주소 검색","archived":false,"fork":false,"pushed_at":"2025-01-05T13:35:08.000Z","size":123,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-26T07:18:16.443Z","etag":null,"topics":["daum","daum-postcode","javascript","react","react-native","reactjs","typescript","webview"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@thewoowon/react-native-daum-postcode","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/thewoowon.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-01-01T15:13:09.000Z","updated_at":"2025-01-07T13:14:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"11682905-1163-4e2d-976e-421c32751b82","html_url":"https://github.com/thewoowon/react-native-daum-postcode","commit_stats":null,"previous_names":["thewoowon/react-native-daum-postcode"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thewoowon/react-native-daum-postcode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thewoowon%2Freact-native-daum-postcode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thewoowon%2Freact-native-daum-postcode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thewoowon%2Freact-native-daum-postcode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thewoowon%2Freact-native-daum-postcode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thewoowon","download_url":"https://codeload.github.com/thewoowon/react-native-daum-postcode/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thewoowon%2Freact-native-daum-postcode/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266111439,"owners_count":23877980,"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":["daum","daum-postcode","javascript","react","react-native","reactjs","typescript","webview"],"created_at":"2025-01-07T17:33:00.624Z","updated_at":"2026-02-06T13:03:48.966Z","avatar_url":"https://github.com/thewoowon.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📦 @thewoowon/react-native-daum-postcode\n\n\u003e React Native wrapper for Daum Postcode service\n\nEasily integrate Daum Postcode (Kakao Address API) in your React Native app for seamless address searching and selection.\n\n---\n\n## 🚀 Features\n- 📍 **Real-time address search:** Effortlessly find addresses using the Daum Postcode API.\n- 📦 **Simple integration:** Minimal setup required for React Native projects.\n- 📱 **Mobile-friendly:** Optimized for both iOS and Android platforms.\n- 📡 **TypeScript support:** Built with TypeScript for better developer experience.\n\n---\n\n## 📦 Installation\n\n```bash\nnpm install @thewoowon/react-native-daum-postcode\n```\n\nor using yarn:\n\n```bash\nyarn add @thewoowon/react-native-daum-postcode\n```\n\nand iOS requires pod install because of react-native-webview.\n\n```bash\ncd ios \u0026\u0026 pod install\n```\n---\n\n## 🛠️ Usage\n\n```tsx\nimport React from 'react';\nimport { View, Alert } from 'react-native';\nimport Postcode from '@thewoowon/react-native-daum-postcode';\n\nconst App = () =\u003e {\n  const handleAddressSelect = (data: any) =\u003e {\n    console.log('Selected Address:', data);\n  };\n\n  return (\n    \u003cView style={{ flex: 1 }}\u003e\n      \u003cPostcode\n        style={{width: '100%', height: '100%'}}\n        jsOptions={{animation: true}}\n        onSelected={(data: any) =\u003e Alert.alert(JSON.stringify(data))}\n        onError={(error: any) =\u003e Alert.alert(JSON.stringify(error))}\n      /\u003e\n    \u003c/View\u003e\n  );\n};\n\nexport default App;\n```\n\n---\n\n## 📚 Props\n\n| Prop Name       | Type                  | Required | Description                        |\n|----------------|-----------------------|----------|------------------------------------|\n| `onSelected`   | `function`            | ✅        | Callback when an address is selected |\n| `onError`      | `function`            | ✅        | Callback when an error is occured |\n| `style`        | `StyleProp\u003cViewStyle\u003e`| ❌        | Custom styles for the component    |\n\n---\n\n## 📦 Example Output\n\nThe component renders the official Daum Postcode search interface inside a WebView, allowing users to search and select addresses easily.\n\n---\n\n## 📖 Changelog\n\n### v1.0.0 (Initial Release)\n- 🎉 First release with basic Daum Postcode integration\n\n---\n\n## 💡 Contributing\n\nContributions are welcome! Please follow these steps:\n1. Fork the repository.\n2. Create a new branch (`feat/new-feature`).\n3. Commit your changes.\n4. Open a pull request.\n\n---\n\n## 🛡️ License\n\nThis project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.\n\n---\n\n## 📞 Support\n\nIf you have any questions or need support, feel free to open an issue on [GitHub](https://github.com/thewoowon/react-native-daum-postcode).\n\n---\n\n## ⭐ Show Your Support\n\nIf you find this package useful, please consider giving it a star on [GitHub](https://github.com/thewoowon/react-native-daum-postcode)!\n\n---\n\nThis project is inspired by [@actbase/react-daum-postcode](https://github.com/actbase/react-daum-postcode).\n\nHappy coding! 🚀\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthewoowon%2Freact-native-daum-postcode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthewoowon%2Freact-native-daum-postcode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthewoowon%2Freact-native-daum-postcode/lists"}