UNPKG

870 BMarkdownView Raw
1# Storybook for HTML
2
3---
4
5Storybook for HTML is a UI development environment for your plain HTML snippets.
6With it, you can visualize different states of your UI components and develop them interactively.
7
8![Storybook Screenshot](https://github.com/storybookjs/storybook/blob/main/media/storybook-intro.gif)
9
10Storybook runs outside of your app.
11So you can develop UI components in isolation without worrying about app specific dependencies and requirements.
12
13## Getting Started
14
15```sh
16cd my-app
17npx sb init -t html
18```
19
20For more information visit: [storybook.js.org](https://storybook.js.org)
21
22---
23
24Storybook also comes with a lot of [addons](https://storybook.js.org/addons) and a great API to customize as you wish.
25You can also build a [static version](https://storybook.js.org/docs/html/sharing/publish-storybook) of your Storybook and deploy it anywhere you want.