Gathering detailed insights and metrics for next-isomorphic-link
Gathering detailed insights and metrics for next-isomorphic-link
Gathering detailed insights and metrics for next-isomorphic-link
Gathering detailed insights and metrics for next-isomorphic-link
Tiny component to improve a11y + SSR output of Next.js <Link/>
npm install next-isomorphic-link
Typescript
Module System
Node Version
NPM Version
27.8
Supply Chain
53.4
Quality
75
Maintenance
100
Vulnerability
91.4
License
JavaScript (100%)
Total Downloads
2,398
Last Day
9
Last Week
10
Last Month
38
Last Year
218
MIT License
2 Stars
28 Commits
1 Watchers
4 Branches
1 Contributors
Updated on Dec 06, 2022
Minified
Minified + Gzipped
Latest Version
0.2.5
Package Id
next-isomorphic-link@0.2.5
Unpacked Size
9.96 kB
Size
4.90 kB
File Count
5
NPM Version
6.4.1
Node Version
10.13.0
Cumulative downloads
Total Downloads
Last Day
0%
9
Compared to previous day
Last Week
-44.4%
10
Compared to previous week
Last Month
65.2%
38
Compared to previous month
Last Year
22.5%
218
Compared to previous year
5
A tiny Next.js <Link/>
wrapper that improves server-side rendered output with better keyboard navigation support
yarn add next-isomorphic-link
Replace import from of next/link
with next-isomorphic-link
:
1- import Link from 'next/link' 2+ import Link from 'next-isomorphic-link'
The default <Link/>
component usage looks like this (as of Next 9):
1<Link href='/puppies'> 2 <a>Puppies</a> 3</Link>
When you view the source, or disable JavaScript, the markup will look like this:
1<a>Puppies</a>
There are a few issues here:
<a>
tags without href
attributes are not tabbable (you can’t tab around the page)Enter
(or the spacebar if you have that option enabled) when focussed on the link will have no effect.These are easy to fix:
href
attribute to the child <a>
in the server-rendered markup (and remove it when mounted)tabIndex
of 0
to the client-side rendered link to ensure tabbability (if that is a word)No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/18 approved changesets -- score normalized to 0
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
17 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More