
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.
breadcrumb-fil-dariane
Advanced tools
A simple component to add an accessible Breadcrumb in your react application
This package was created with the purpose of simplifying the implementation of an accessible and customizable breadcrumb/ariane thread

Install this package:
npm add breadcrumb-fil-dariane@1.1.4
Import the Breadcrumb component:
import Breadcrumb from "breadcrumb-fil-dariane";
You can integrate this component as a simple React component.
return (
<Breadcrumb pathArray={myPathArray}/>
);
An array of objects containing 'path', which represents the route, and 'breadcrumb', which is the name to display in the breadcrumb.
It should be implemented for all the website's routes and set to "null" if you don't want a breadcrumb to be displayed for that route.
const myPathArray = [
{ path: '/', breadcrumb: 'Home' },
{ path: '/about', breadcrumb: 'About' },
{ path: '/login', breadcrumb: 'Login' },
{ path: '/contact', breadcrumb: 'Contact' },
{ path: '/contactList', breadcrumb: null }
]
const Component = () => {
const myPathArray = [
{ path: '/', breadcrumb: 'Home' },
{ path: '/about', breadcrumb: 'About' },
{ path: '/login', breadcrumb: 'Login' },
{ path: '/contact', breadcrumb: 'Contact' },
{ path: '/contactList', breadcrumb: null }
]
return (
<Breadcrumb pathArray={myPathArray}/>
// rest of your component
);
}
export default Component;
Here is a basic customization example. You can adjust the styles to match your branding guidelines.
.breadcrumbs__list {
padding: 1rem;
justify-content: start;
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
color: #000;
font-size: 1rem;
align-items: center;
}
.breadcrumbs__list__element {
display: flex;
gap: 0.5rem;
}
.breadcrumb-active {
text-decoration: underline 3px #892121;
text-underline-offset: 6px;
font-weight: bold;
}
.breadcrumb-not-active {
text-decoration: none;
}
FAQs
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.