Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@kadira/storybook-addon-links
Advanced tools
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
npm install -D @kadira/storybook-addon-links
Add this line to your addons.js
file (create this file inside your storybook config directory if needed).
import '@kadira/storybook-addon-links/register';
Import the linkTo
function and use it to create links. When creating links, provide the target story info.
import { storiesOf } from '@kadira/storybook'
import { linkTo } from '@kadira/storybook-addon-links'
storiesOf('Button', module)
.add('First', () => (
<button onClick={linkTo('Button', 'Second')}>Go to "Second"</button>
))
.add('Second', () => (
<button onClick={linkTo('Button', 'First')}>Go to "First"</button>
));
FAQs
Story Links addon for storybook
The npm package @kadira/storybook-addon-links receives a total of 7,462 weekly downloads. As such, @kadira/storybook-addon-links popularity was classified as popular.
We found that @kadira/storybook-addon-links demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.