
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
@storybook/addon-ondevice-notes
Advanced tools
The Notes Addon allows you to write notes (text or markdown) for your stories in Storybook.
yarn add -D @storybook/addon-ondevice-notes
Then, add following content to .rnstorybook/main.ts:
import type { StorybookConfig } from '@storybook/react-native';
const main: StorybookConfig = {
addons: ['@storybook/addon-ondevice-notes'],
};
export default main;
Use the notes parameter to add a note to stories:
import type { Meta } from '@storybook/react';
import { MyComponent } from './MyComponent';
const meta = {
title: 'My title',
component: MyComponent,
parameters: {
notes: `
# Here I can add some markdown
Put a full new line between each element.
`,
},
} satisfies Meta<typeof MyComponent>;
export default meta;
See the example app for more examples.
FAQs
Write notes for your react-native Storybook stories.
We found that @storybook/addon-ondevice-notes demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 14 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.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.