npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

storybook-builder-wds

v0.1.0

Published

Storybook builder powered by @web/dev-server

Downloads

15

Readme

storybook-builder-wds

Storybook builder powered by @web/dev-server.

Frameworks

Currently we support Web Components via storybook-web-components-wds.

Install

Install npm packages:

npm install storybook-builder-wds storybook-web-components-wds --save-dev

Setup

Follow the official storybook docs to setup storybook.

You can choose Web Components and another builder when asked by the init CLI command. Later you can change the framework to storybook-web-components-wds in the storybook main configuration file.

If you are migrating from the @web/dev-server-storybook plugin, please read the migration guide below.

Configuration

When you finish the setup you'll have a standard storybook folder with configuration files (.storybook by default) containing at least main.js.

Activating the builder

Change the following in main.js:

  • set config type to import('storybook-web-components-wds').StorybookConfig
  • set the framework.name to 'storybook-web-components-wds'
// .storybook/main.js

/** @type { import('storybook-web-components-wds').StorybookConfig } */
const config = {
  ...
  framework: {
    name: 'storybook-web-components-wds',
  },
  ...
};

export default config;

Configuring storybook

The storybook-builder-wds aims at compatibility with standard storybook features, e.g. .storybook/preview.js. Follow the official storybook docs for the configuration options.

Configuring dev server

The builder implements the storybook dev command and comes with a default @web/dev-server configuration which adheres to browser standards and supports essential plugins of the storybook ecosystem.

Config file and wdsConfigPath

When storybook is loaded, the builder's default @web/dev-server config gets automatically merged with the project's config file (web-dev-server.config.{mjs,cjs,js}) if present. This is needed to ensure that the same configuration is used for application, feature or design system you are building.

Optionally you can configure a different path to this file using framework.options.builder.wdsConfigPath, relative to CWD:

// .storybook/main.js

/** @type { import('storybook-web-components-wds').StorybookConfig } */
const config = {
  ...
  framework: {
    name: 'storybook-web-components-wds',
    options: {
      builder: {
        wdsConfigPath: 'storybook-wds.config.mjs',
      },
    },
  },
  ...
};

export default config;

wdsFinal hook

Sometimes you might need to add storybook specific configuration for dev server, you can use the wdsFinal hook for this.

// .storybook/main.js

/** @type { import('storybook-web-components-wds').StorybookConfig } */
const config = {
  ...
  framework: {
    name: 'storybook-web-components-wds',
  },
  async wdsFinal(config) {
    // add storybook specific configuration for @web/dev-server
    // e.g. "open" to go to a custom URL in the browser when server has started
    config.open = '/custom-path';
    return config;
  },
  ...
};

export default config;

The config parameter is a @web/dev-server config, make sure to use appropriate options and @web/dev-server plugins. When using rollup plugins make sure to convert them to @web/dev-server ones.

Configuring static build

The builder implements the storybook build command and comes with a default rollup configuration which adheres to browser standards and supports essential plugins of the storybook ecosystem.

rollupFinal hook

Sometimes you might need to add some extra configuration for the static build, you can use the rollupFinal hook for this.

// .storybook/main.js
import polyfillsLoader from '@web/rollup-plugin-polyfills-loader';

/** @type { import('storybook-web-components-wds').StorybookConfig } */
const config = {
  ...
  framework: {
    name: 'storybook-web-components-wds',
  },
  async rollupFinal(config) {
    // add extra configuration for rollup
    // e.g. a new plugin
    config.plugins.push(polyfillsLoader({
      polyfills: {
        esModuleShims: true,
      },
    }));
    return config;
  },
  ...
};

export default config;

The config parameter is a rollup config, make sure to use appropriate options and rollup plugins.

Migration

This guide assumes you are migrating from the @web/dev-server-storybook plugin and @web/storybook-prebuilt storybook 6 bundle.

Most of the official migration guide applies to this migration too, with a few additions and exceptions. Please read the official guide and follow it for manual migrations, but before running the automatic upgrade script read the sections below.

Run upgrade script

The automatic upgrade script can't detect the @web/dev-server-storybook plugin and won't work as a result. But with a simple workaround you can make it work.

First install old version of builder-vite and old storybook 6 renderer for the technology you used in the old setup, e.g. for Web Components it will be:

npm install @storybook/[email protected] @storybook/web-components@6 --save-dev

Then proceed with the upgrade script and follow it's interactive process:

npx storybook@latest upgrade

Then activate the builder in the main storybook configuration.

Uninstall old packages

npm uninstall @web/dev-server-storybook @web/storybook-prebuilt --save-dev

Install addons

The old storybook 6 bundle @web/storybook-prebuilt came with a few preconfigured addons. In the new setup you'll need to install and configure them explicitly.

We recommend to install the following addons:

npm install @storybook/addon-essentials @storybook/addon-links --save-dev

Then register them in the storybook main configuration:

// .storybook/main.js

/** @type { import('storybook-web-components-wds').StorybookConfig } */
const config = {
  ...
  addons: [
    '@storybook/addon-essentials',
    '@storybook/addon-links',
    ...
  ],
  ...
};

export default config;

Rename "rollupConfig" => "rollupFinal"

For consistency with other similar hooks in the storybook ecosystem, including this builder's own wdsFinal, the rollup hook was renamed to rollupFinal.

CLI

@web/dev-server-storybook was a plugin of @web/dev-server, therefore you used to run storybook via wds CLI.

With the introduction of builders in storybook 7 this is no longer the case and you can make use of storybook CLI.

Typically you'll use storybook dev and storybook build to start the dev server and create a static build for deployment:

// package.json
{
  ...
  "scripts": {
    ...
    "storybook:start": "storybook dev -p 6006",
    "storybook:build": "storybook build --output-dir demo-storybook",
    ...
  },
  ...
}

Usage of ESM

Storybook 7 supports ES modules for configuration files, so we recommend using standard syntax for imports and exports in .storybook/main.js and other configuration files.

Storybook specific configuration

The usage of web-dev-server.config.{mjs,cjs,js} file for storybook specific configuration is not recommended. You should use this file for your project dev server.

If you have a storybook specific configuration, move it to the wdsFinal hook instead.

"port" option

The port configured in web-dev-server.config.{mjs,cjs,js} won't have any effect on the storybook, because storybook CLI runs it's own dev server.

To open storybook dev server on a certain port use the storybook CLI argument instead: storybook dev -p XXXX.

"open" option

The open URL configured in web-dev-server.config.{mjs,cjs,js} won't have any effect on the storybook, because it conflicts with the storybook auto-open behavior.

To open a non-default URL do the following:

  • disabled open in storybook CLI, e.g. storybook dev -p XXXX --no-open
  • configure open in wdsFinal hook

Contributing

Please read the Contributing guide.