Update 2019/06/30: Storybook now has an option via the CLI to install for Preact. For more info see Preact for Storybook.TLDR npx -p @storybook/cli sb init --type preact
.
In my last Storybook post, Getting Started with Storybook for React, I showed you how to install Storybook for React and gave a quick breakdown of what all the pieces were. I suggest giving that a quick read before continuing here.
In this post, I’ll show you how to get React Storybook up and running with Preact. The assumption is that the project you want to add Storybook to already has Preact installed as a dependency.
- A temporary step is to first install React, so run
npm install react
- If you have npx installed, run
npx @storybook/cli
(most people should have this if you’re on a newer version of node). If not runnpm install @storybook/cli -g
. - Next from the command line, run
getstorybook
- This will install all the dependencies you need to run Storybook.
- Now let’s uninstall
react
from our dependencies as we want to use preact! - Next we need to install preact-compat so that Preact will play nicely with Storybook. If you need preact-compat as a dependency for other react libraries, install it to dependencies,
npm install preact-compat
. Otherwise install it as a dev depency, i.e.npm install preact-compat -D
- Almost there!
- The last thing we need to do is tell webpack (what Storybook uses under the hood), to use preact-compat. To do this, we need to create a custom webpack configuration file for Storybook. Lucky for us, Storybook supports this out of the box. In the root folder where your package.json file is, there will be a new folder called
.storybook
. In there it contains files related to Storybook configuration. Create a new file in there calledwebpack.config.js
and paste the following contents and save the file.
module.exports = {
resolve: {
extensions: [".js", "jsx"],
alias: {
react: "preact-compat",
"react-dom": "preact-compat"
}
}
};
Note that this is a super bare bones webpack configuration. You can add anything else here you may need just like a regular webpack configuration file.
- Storybook will create some demo stories for you found in the root folder of your app at
./stories/index.stories.js
- Open this file and remove the React reference and replace it with
import { h } from "preact";
- All that’s left to do is run
npm run storybook
and navigate to Storybook in a browser.
Extras
If you want to see an example of the final result, have a look at my first commit to the dev.to repo I made in March of this year.
I haven’t had time yet, but I was discussing with the Storybook maintainers about potentially having a config for Preact out of the box.
Maybe I’ll get to it at some point, but if you’re interested, by all means go for it. 🙃
Top comments (5)
:( not work for me..
I used preact/cli.. don't know if this make difference
Could be... It sounds like your error though is that the file can't compile jsx, i.e.
<Header />
That's unfortunate that we have to do this extra job for Preact, but on the other hand things could change soon.
Yes, presets seem an adequate solution, of course a CLI version would be the best.
(Of topic, you might want to change the "font" of your name and bio. While Unicode abuse seems fun, some screen readers utter those words letter by letter.)
It's actually no longer the case. They now have an option via the CLI for Preact. For more info see Preact for Storybook.
@_developit pointed out that this setup uses webpack 3.
I'll add a section some time later this week about webpack 4.