Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
breadcrumbs-next
Advanced tools
npm install breadcrumbs-next
yarn install breadcrumbs-next
pnpm install breadcrumbs-next
Imagine your app having the following routes:
/momentum
/projects/[projectId]
/[[…slug]]
/users/[userId]/[[…stuff]]
/users/[userId]/[[…slug]]?t=record
/users?t=record
/users/[userId]?t=record
Last three examples also include URL parameters, which can be used to construct breadcrumbs. For example, when you have a page consisting from another set of tabs, but you don't want to create another route for that.
All of those examples can be transformed to the following formats (lets omit Home
element in resulting breadcrumbs):
Pattern | Breadcrumbs | Example URL |
---|---|---|
/momentum | Momentum | = |
/profile?t=records | Profile > Records | = |
/projects/[projectId] | Projects > "Grammar" | /projects/17 |
/[[…slug]] | Russia > Moscow > Subway > Kommunarka | /russia/moscow/subway/kommunarka |
/users/[userId]/[[…stuff]] | Users > Pavel > Deliveries > Yandex > Lavka | /users/132/deliveries/yandex/lavka |
/users/[userId]/[[…slug]]?t=records [1] | Users > Pavel > Deliveries > Dashboard > Record | /users/132/deliveries/dashboard?t=records |
/users/[userId]?t=records | Users > Pavel > Records | /users/132?t=records |
[1] - Search params always are taken last, because change of URL (w/o params) is the same as opening another page, thus even having the same params set int the URL doesn't mean they should go in the beginning. They are behaviour modifiers of the page, but not its primary descriptor.
Name | Type |
---|---|
href | string |
text | string |
textGenerator | null or TextGeneratorFn |
Name | Type |
---|---|
href | string |
isFirst | boolean |
isLast | boolean |
text | string |
textGenerator | null or TextGeneratorFn |
▸ (config
) => string
Name | Type |
---|---|
config | Object |
config.href | string |
config.isCatchAllSubpath | boolean |
config.paramIndex | number |
config.paramName | string |
config.isCatchAllSubpath | boolean |
config.paramSlugIndex | null or number |
config.paramValue | string |
config.query | NextRouter ["query" ] |
▸ (config
) => null
| TextGeneratorFn
Name | Type |
---|---|
config | Object |
config.href | string |
config.isCatchAllSubpath | boolean |
config.paramIndex | number |
config.paramName | string |
config.paramSlugIndex | null or number |
config.paramValue | string |
config.query | NextRouter ["query" ] |
Name | Type |
---|---|
Container | string or FC<{children: ReactNode}> |
Crumb | FC< CrumbComponentProps > |
getDefaultTextGenerator? | GetDefaultTextGenerator |
getTextGenerator? | GetTextGenerator |
homeText? | string |
▸ () => string
| Promise<string>
Name | Type |
---|---|
{...props} | NextBreadcrumbsProps |
Name | Type |
---|---|
Component | FC<Omit< CrumbComponentProps , "textGenerator">> |
yarn install-peers
yarn vitest
FAQs
The component to display breadcrumbs within NextJS web application
We found that breadcrumbs-next 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.