Gathering detailed insights and metrics for @kadira/storybook-addon-links
Gathering detailed insights and metrics for @kadira/storybook-addon-links
npm install @kadira/storybook-addon-links
Typescript
Module System
Node Version
NPM Version
45.2
Supply Chain
68.5
Quality
80.7
Maintenance
50
Vulnerability
99.6
License
JavaScript (100%)
Total Downloads
4,667,284
Last Day
393
Last Week
2,054
Last Month
11,735
Last Year
133,471
11 Stars
23 Commits
1 Forks
10 Watching
8 Branches
8 Contributors
Minified
Minified + Gzipped
Latest Version
1.0.1
Package Id
@kadira/storybook-addon-links@1.0.1
Size
2.31 kB
NPM Version
3.10.3
Node Version
6.3.0
Publised On
09 Aug 2016
Cumulative downloads
Total Downloads
Last day
-11.1%
393
Compared to previous day
Last week
-24.3%
2,054
Compared to previous week
Last month
29.4%
11,735
Compared to previous month
Last year
39.8%
133,471
Compared to previous year
The Story Links addon can be used to create links between stories. This addon works with both React Storybook and React Native Storybook (included by default).
First, install the addon
1npm install -D @kadira/storybook-addon-links
Add this line to your addons.js
file (create this file inside your storybook config directory if needed).
1import '@kadira/storybook-addon-links/register';
Import the linkTo
function and use it to create links. When creating links, provide the target story info.
1import { storiesOf } from '@kadira/storybook' 2import { linkTo } from '@kadira/storybook-addon-links' 3 4storiesOf('Button', module) 5 .add('First', () => ( 6 <button onClick={linkTo('Button', 'Second')}>Go to "Second"</button> 7 )) 8 .add('Second', () => ( 9 <button onClick={linkTo('Button', 'First')}>Go to "First"</button> 10 )); 11
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
Found 6/16 approved changesets -- score normalized to 3
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
license file not detected
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
Score
Last Scanned on 2025-01-27
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