
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
sample-conan-modal
Advanced tools
간단한 모달을 구현할 수 있는 라이브러리입니다.
npm install sample-conan-modal
import MyModal from 'sample-conan-modal';
<MyModal trigger={<button>모달 열기</button>}>
<h2>제목</h2>
<p>내용</p>
</MyModal>
trigger: 모달을 열기 위한 요소. React element 형태로 전달합니다. children: 모달 내부에 들어갈 컨텐츠입니다.
import MyModal from 'sample-conan-modal';
function App() {
return (
<div>
<MyModal trigger={<button>모달 열기</button>}>
<h2>제목</h2>
<p>내용</p>
</MyModal>
</div>
);
}
export default App;
FAQs
간단한 모달 라이브러리
We found that sample-conan-modal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.