
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.
react-dev-marker
Advanced tools
A super simple React component that visually marks work-in-progress UI elements with a red dashed border and DEV label.
A super simple React component that visually marks work-in-progress UI elements. Wrap any component to show a red dashed border with a "DEV" label - no more explaining what's not ready yet during demos or code reviews.
Perfect for marking non-functional buttons, blocked features, or anything waiting for implementation. Optionally add a title to explain the status and/or a link to the relevant Slack thread, JIRA ticket, or Figma design.
Zero dependencies - only React as a peer dependency.

yarn add react-dev-marker
or
npm install react-dev-marker
or
pnpm install react-dev-marker
import DevMarker from 'react-dev-marker';
// Basic usage
<DevMarker>
<MyComponent />
</DevMarker>
// With title
<DevMarker title="Header">
<Header />
</DevMarker>
// Block display
<DevMarker title="Sidebar" isBlock>
<Sidebar />
</DevMarker>
// With link to JIRA/Slack
<DevMarker title="Fix layout" link="https://jira.example.com/browse/PROJ-123">
<BuggyComponent />
</DevMarker>
// Portal mode (for overflow:hidden parents)
<DevMarker isPortal>
<ClippedContent />
</DevMarker>
When demoing or testing an app with clients or teammates, you often need to explain what's work-in-progress. Instead of verbal explanations, just wrap components with DevMarker:
Non-functional buttons:
<DevMarker title="Not implemented yet">
<Button>Export PDF</Button>
</DevMarker>
Blocked features:
<DevMarker title="Blocked by backend" link="https://yourteam.slack.com/archives/...">
<UserSettingsForm />
</DevMarker>
Waiting for design:
<DevMarker title="Waiting for design" link="https://figma.com/file/...">
<PlaceholderCard />
</DevMarker>
This way, everyone instantly sees what's in development and can click through to relevant discussions or tickets.
| Prop | Type | Default | Description |
|---|---|---|---|
children | ReactNode | - | The content to wrap |
title | string | - | Optional label shown after "DEV:" |
isBlock | boolean | false | If true, renders as block element |
isPortal | boolean | false | Renders tab via Portal (for overflow:hidden parents) |
link | string | - | Optional URL shown as clickable "↗" |
MIT
FAQs
A super simple React component that visually marks work-in-progress UI elements with a red dashed border and DEV label.
We found that react-dev-marker demonstrated a healthy version release cadence and project activity because the last version was released less than 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.