
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.
briefy-design
Advanced tools
npm i -D briefy-design
Button
import { Button } from 'briefy-design'
function MainPage() {
return (
<Button
onClick={() => alert('click!')}
title="name"
size="medium"
mode="lineBlue"
/>
)
}
Input
import { Input } from 'briefy-design'
function MainPage() {
return (
<Input
type="text"
mode="red"
placeholder="타이틀 입력"
onChange={(e: ChangeEvent<HTMLInputElement>) => console.log(e.target.value)}
/>
)
}
Interest
import { Interest } from 'briefy-design'
function MainPage() {
return (
<Interest title="비지니스" onClick={(title: string) => alert(title)} />
)
}
ArticleCard
import { ArticleCard } from 'briefy-design'
function MainPage() {
return (
<ArticleCard
data={{
category: ['뉴닉', '경제'],
title: '이스라엘-팔레스타인 하마스 전쟁 (8) : 지상편과 휴전',
src: '이미지경로',
percent: '75%',
}}
mode="unread"
onClick={() => alert('클릭!')}
/>
)
}
NewsLetterCard
import { NewsLetterCard } from 'briefy-design'
function MainPage() {
return (
<NewsLetterCard
src="이미지경로"
title="뉴닉"
category="경제"
description="시간이 없어도 세상은 궁금하니까! 세상 돌아가는 소식을 쉽고 재미있게 받아보세요"
onClick={() => alert('뉴스레터')}
/>
)
}
FAQs
🔗 _**storybook deploy link**_
We found that briefy-design 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.