@storybook/addon-onboarding
Storybook Onboarding: Help new users learn how to write stories
Last updated 8 months ago by storybook-bot .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install @storybook/addon-onboarding 
SYNC missed versions from official npm registry.

Storybook Addon Onboarding

This addon provides a guided tour in some of Storybook's features, helping you get to know about the basics of Storybook and learn how to write stories!

Triggering the onboarding

This addon comes installed by default in Storybook projects and should trigger automatically. If you want to retrigger the addon, you should make sure that your Storybook still contains the example stories that come when initializing Storybook, and you can then navigate to http://localhost:6006/?path=/onboarding after running Storybook.

Uninstalling

This addon serves to provide you a guided experience on the basics of Storybook. Once you are done, the addon is therefore not needed anymore and will not get activated (unless triggered manually), so you can freely remove it. Here's how to do so:

1. Remove the dependency

yarn:

yarn remove @storybook/addon-onboarding

npm:

npm uninstall -D @storybook/addon-onboarding

pnpm:

pnpm remove -D @storybook/addon-onboarding

2. Remove the addon in your .storybook/main.js file

const config = {
  stories: [
    "../stories/**/*.stories.mdx",
    "../stories/**/*.stories.@(js|jsx|ts|tsx)",
  ],
  addons: [
-   "@storybook/addon-onboarding"
  ],
};
export default config;

Learn more about Storybook at storybook.js.org.

Current Tags

  • 0.0.0-pr-31551-sha-c166dc44                                ...           canary (7 months ago)
  • 9.1.3                                ...           latest (8 months ago)
  • 10.0.0-beta.0                                ...           next (8 months ago)
  • 8.2.10                                ...           tag-for-publishing-older-relea (a year ago)

1245 Versions

Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (6)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org | Home |