
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
storybook-addon-whats-new
Advanced tools
Storybook addon intended to let users see what is new with your repository
This is a Storybook addon intended to let users see what's new with your repository.
The recommendation is to link to your CHANGELOG.md
for automated updates, or you can custom manage a Markdown file with more tailored updates.
Install the dependency:
yarn add -D storybook-addon-whats-new
Then add it to your .storybook/main.js
module.exports = {
// other configs here
addons: ['storybook-addon-whats-new']
}
Edit or create a file called addons.js
in the Storybook config directory (by default, it’s .storybook
).
Add following content to it:
import 'storybook-addon-whats-new';
To configure this addon, you must provide a whatsNewSource
parameter with the location of your Markdown file to display:
import React from "react";
import { Button } from "./Button";
import WhatsNew from './WHATS_NEW.md';
export default {
title: "Example/Button",
component: Button,
parameters: {
whatsNewSource: WhatsNew,
},
};
If your want to show the What's New panel on every story you can configure it globally in .storybook/preview.js
(.storybook/config.js
for Storybook <= 5.2
).
To configure this addon, you must provide a whatsNewSource
parameter with the location of your Markdown file to display:
import { addParameters } from '@storybook/react'; // <- or your storybook framework
import WhatsNew from './WHATS_NEW.md';
addParameters({
whatsNewSource: WhatsNew,
});
FAQs
Storybook addon intended to let users see what is new with your repository
The npm package storybook-addon-whats-new receives a total of 2,579 weekly downloads. As such, storybook-addon-whats-new popularity was classified as popular.
We found that storybook-addon-whats-new 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.