@open-wc/storybook
TypeScript icon, indicating that this package has built-in type declarations

0.2.8 • Public • Published

Demoing via storybook

Part of Open Web Components

Open Web Components provides a set of defaults, recommendations and tools to help facilitate your web component project. Our recommendations include: developing, linting, testing, building, tooling, demoing, publishing and automating.

CircleCI BrowserStack Status Renovate enabled

For demoing and showcasing different states of your Web Component, we recommend using storybook.

::: tip This is part of the default open-wc recommendation :::

Setup

npm i -g yo
npm i -g generator-open-wc

yo open-wc:demoing

Manual

  • yarn add @open-wc/storybook --dev
  • Copy at minimum the .storybook folder to .storybook
  • If you want to bring along the examples, you may also copy the stories folder.
  • Add the following scripts to your package.json
"scripts": {
  "site:build": "npm run storybook:build",
  "storybook:build": "build-storybook -o _site",
  "storybook:start": "start-storybook -p 9001"
},

Usage

Create stories within the stories folder.

npm run storybook:start

Example

The Set-Game Example has the default publishing via storybook on netlify. You can see the finished page at: https://example-set-game-open-wc.netlify.com/.

<script> export default { mounted() { const editLink = document.querySelector('.edit-link a'); if (editLink) { const url = editLink.href; editLink.href = url.substr(0, url.indexOf('/master/')) + '/master/packages/storybook/README.md'; } } } </script>

Readme

Keywords

none

Package Sidebar

Install

npm i @open-wc/storybook

Weekly Downloads

223

Version

0.2.8

License

MIT

Unpacked Size

12.3 kB

Total Files

6

Last publish

Collaborators

  • passle
  • d4kmor
  • larsdenbakker
  • modern-web