Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
@actbase/react-daum-postcode
Advanced tools
다음 우편번호 검색을 React, React-Native 에서 쉽게 사용할 수 있도록 만든 플러그인입니다.
상세 사용방법은 아래 URL을 참고하세요.
https://github.com/daumPostcode/QnA
https://spi.maps.daum.net/postcode/guidessl
npm install @actbase/react-daum-postcode
or
yarn add @actbase/react-daum-postcode
우편번호 찾는 페이지 자체는 Webview를 통해 실행되도록 되어있습니다.
react-native-webview를 설치해야 합니다.
npm install react-native-webview
npx pod-install
import Postcode from '@actbase/react-daum-postcode';
const YourView = () => (
<Postcode
style={{ width: 320, height: 320 }}
jsOptions={{ animation: true }}
onSelected={data => alert(JSON.stringify(data))}
/>
);
import Postcode from '@actbase/react-daum-postcode';
...
const YourView = () => {
const [isModal, setModal] = useState(false);
return (
<>
<Modal isVisible={isModal}>
<Postcode
style={{ width: 320, height: 320 }}
jsOptions={{ animation: true, hideMapBtn: true }}
onSelected={data => {
alert(JSON.stringify(data));
setModal(false);
}}
/>
</Modal>
<Button onClick={() => setModal(true)}>주소찾기</Button>
</>
);
}
jsOptions?: JSOptions
다음 우편번호찾기 속성을 넣습니다.
아래 URL을 참고해주세요.
https://spi.maps.daum.net/postcode/guidessl#attributes
onSelected: (data: OnCompleteParams) => void
다음우편번호찾기 결과 값을 수신합니다.
oncomplete의 항목을 참고해주세요.
https://spi.maps.daum.net/postcode/guidessl#attributes
style: ({width, height})
width, height값을 별도로 줄 수 있습니다.
해당 모듈은 액트베이스(유)에서 개발 및 관리를 진행하고 있습니다.
프로젝트 문의 혹은 제휴가 필요한 경우 project@actbase.io로 연락주세요.
FAQs
다음 우편번호찾기 for React, React-Native
The npm package @actbase/react-daum-postcode receives a total of 838 weekly downloads. As such, @actbase/react-daum-postcode popularity was classified as not popular.
We found that @actbase/react-daum-postcode demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.