
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@storybook/addon-queryparams
Advanced tools
This storybook addon can be helpful if your components need special query parameters to work the way you want them to. It allows you to mock query params per story so that you can easily reproduce different states of your component.
First, install the addon.
$ yarn add @storybook/addon-queryparams --dev
Register it by adding it in the addons attribute in your main.js
file (create this file inside your storybook config directory if needed).
module.exports = {
addons: ['@storybook/addon-queryparams'],
};
In your story, add the withQuery
decorator and define the query parameters you want to mock:
import React from 'react';
import { Button } from '@storybook/react/demo';
import { withQuery } from '@storybook/addon-queryparams';
export default {
title: 'Button',
component: Button,
decorators: [withQuery],
parameters: {
query: {
mock: 'Hello world!',
},
},
};
export const WithMockedSearch = () => {
const urlParams = new URLSearchParams(document.location.search);
const mockedParam = urlParams.get('mock');
return <div>Mocked value: {mockedParam}</div>;
};
import React from 'react';
import { storiesOf } from '@storybook/react';
storiesOf('button', module)
.addParameters({
query: {
mock: 'Hello World!',
},
})
.add('Prints the mocked parameter', () => {
const urlParams = new URLSearchParams(document.location.search);
const mockedParam = urlParams.get('mock');
return <div>Mocked value: {mockedParam}</div>;
});
FAQs
addon to mock queryparams in storybook
We found that @storybook/addon-queryparams demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 9 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.