
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-breadcrum-component
Advanced tools
A customizable and responsive breadcrumb navigation component for React applications, designed to support multi-level navigation with icons and routing.
react-icons for arrow iconsnpm install react-breadcrum-component
import 'react-breadcrum-component/dist/style.css'
import React from 'react';
import BreadCrum from 'react-breadcrum-component';
//OR import { BreadCrum } from 'react-breadcrum-component'
const YourComponent = () => {
return (
<div>
<BreadCrum
secondName="Dashboard"
secondTo="/dashboard"
thirdName="Reports"
thirdTo="/dashboard/reports"
current="Monthly Report"
className="class name" //optional
/>
</div>
);
};
export default App;
| Prop | Type | Description |
|---|---|---|
current | string | Required. The current (last) breadcrumb label |
secondName | string | Second breadcrumb label (optional) |
secondTo | string | Link path for second breadcrumb |
thirdName | string | Third breadcrumb label (optional) |
thirdTo | string | Link path for third breadcrumb |
fourthName | string | Fourth breadcrumb label (optional) |
fourthTo | string | Link path for fourth breadcrumb |
fifthName | string | Fifth breadcrumb label (optional) |
fifthTo | string | Link path for fifth breadcrumb |
className | string | Optional class name for additional custom styling |
FAQs
A customizable breadcrumb component for React applications.
The npm package react-breadcrum-component receives a total of 3 weekly downloads. As such, react-breadcrum-component popularity was classified as not popular.
We found that react-breadcrum-component 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.