# Storybook [![Build Status on CircleCI](https://circleci.com/gh/storybooks/storybook.svg?style=shield)](https://circleci.com/gh/storybooks/storybook) [![CodeFactor](https://www.codefactor.io/repository/github/storybooks/storybook/badge)](https://www.codefactor.io/repository/github/storybooks/storybook) [![Known Vulnerabilities](https://snyk.io/test/github/storybooks/storybook/8f36abfd6697e58cd76df3526b52e4b9dc894847/badge.svg)](https://snyk.io/test/github/storybooks/storybook/8f36abfd6697e58cd76df3526b52e4b9dc894847) [![BCH compliance](https://bettercodehub.com/edge/badge/storybooks/storybook)](https://bettercodehub.com/results/storybooks/storybook) [![codecov](https://codecov.io/gh/storybooks/storybook/branch/master/graph/badge.svg)](https://codecov.io/gh/storybooks/storybook) [![Storybook Slack](https://now-examples-slackin-rrirkqohko.now.sh/badge.svg)](https://now-examples-slackin-rrirkqohko.now.sh/) [![Backers on Open Collective](https://opencollective.com/storybook/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/storybook/sponsors/badge.svg)](#sponsors) * * * Storybook is a development environment for UI components. It allows you to browse a component library, view the different states of each component, and interactively develop and test components. ## Intro ![Storybook Screenshot](app/react/docs/demo.gif) Storybook runs outside of your app. This allows you to develop UI components in isolation, which can improve component reuse, testability, and development speed. You can build quickly without having to worry about application-specific dependencies. Here are some featured examples that you can reference to see how Storybook works: Storybook comes with a lot of [addons](https://storybook.js.org/addons/introduction/) for component design, documentation, testing, interactivity, and so on. Storybook's easy-to-use API makes it easy to configure and extend in various ways. It has even been extended to support React Native development for mobile. ## Table of contents - [Getting Started](#getting-started) - [Projects](#projects) - [Main Projects](#main-projects) - [Sub Projects](#sub-projects) - [Addons](#addons) - [Contributing](#contributing) - [Development scripts](#development-scripts) - [Backers](#backers) - [Sponsors](#sponsors) ## Getting Started First install storybook: ```sh npm i -g @storybook/cli cd my-react-app getstorybook ``` The `-g` global install is used to run our cli tool in your project directory to generate templates for your existing projects. To avoid the global install and start your project manually, take a look at our [Slow Start Guide](https://storybook.js.org/basics/slow-start-guide/). Once it's installed, you can `npm run storybook` and it will run the development server on your local machine, and give you a URL to browse some sample stories. **Storybook v2.x migration note**: If you're using Storybook v2.x and want to shift to 3.x version the easiest way is: ```sh npm i -g @storybook/cli cd my-storybook-v2-app getstorybook ``` It runs a codemod to update all package names. Read all migration details in our [Migration Guide](MIGRATION.md) For full documentation on using Storybook visit: [storybook.js.org](https://storybook.js.org) For additional help, join us [in our Slack](https://now-examples-slackin-rrirkqohko.now.sh/) ## Projects ### Main Projects - [Storybook for react](app/react) - Storybook for React components - [Storybook for vue](app/vue) - Storybook for Vue components - [Storybook for angular](app/angular) - Storybook for Angular components - [Storybook for react-native](app/react-native) - Storybook for React-Native components ### Sub Projects - [CLI](lib/cli) - Streamlined installation for a variety of app types - [examples](examples) - Code examples to illustrate different Storybook use cases ### Addons - [storyshots](addons/storyshots) - Easy snapshot testing for storybook - [actions](addons/actions/) - Log actions as users interact with components in storybook - [links](addons/links/) - Create links between stories - [comments](addons/comments/) - Comment on storybook stories - [graphql](addons/graphql/) - Query a GraphQL server within Storybook stories - [info](addons/info/) - Annotate stories with extra component usage information - [knobs](addons/knobs/) - Interactively edit component prop data in the Storybook UI - [notes](addons/notes/) - Annotate storybook stories with notes - [options](addons/options/) - Customize the storybook UI in code ## Contributing We welcome contributions to Storybook! - ⇄ Pull requests and ★ Stars are always welcome. - Read our [contributing guide](CONTRIBUTING.md) to get started. ### Development scripts #### `yarn bootstrap` > Installs package dependencies and links packages together - using lerna #### `yarn run publish` > Push a release to git and npm > will ask for version in interactive mode - using lerna. #### `yarn lint` > boolean check if code conforms to linting rules - uses remark & eslint - `yarn lint:js` - will check js - `yarn lint:md` - will check markdown + code samples - `yarn lint:js --fix` - will automatically fix js #### `yarn test` > boolean check if unit tests all pass - uses jest - `yarn test:watch` - will run tests in watch-mode ### Backers Support us with a monthly donation and help us continue our activities. \[[Become a backer](https://opencollective.com/storybook#backer)] ### Sponsors Become a sponsor and get your logo on our README on Github with a link to your site. \[[Become a sponsor](https://opencollective.com/storybook#sponsor)]