Storybook for Angular
Automatic setup
You may have tried to use our quick start guide to setup your project for Storybook.If it failed because it couldn’t detect you’re using angular, you could try forcing it to use angular:
npx -p @storybook/cli sb init --type angular
Manual setup
If you want to set up Storybook manually for your Angular project, this is the guide for you.
Step 1: Add dependencies
Add @storybook/angular
Add @storybook/angular
to your project. To do that, run:
npm install @storybook/angular --save-dev
Add @babel/core, and babel-loader
Make sure that you have @babel/core
, and babel-loader
in your dependencies as well because we list these as a peer dependencies:
npm install babel-loader @babel/core --save-dev
Step 2: Add a npm script
Then add the following NPM script to your package.json
in order to start the storybook later in this guide:
{
"scripts": {
"storybook": "start-storybook"
}
}
Step 3: Create the config file
For a basic Storybook configuration, the only thing you need to do is tell Storybook where to find stories.
To do that, create a file at .storybook/config.js
with the following content:
import { configure } from '@storybook/angular';
configure(require.context('../src', true, /\.stories\.[tj]s$/), module);
That will load all the stories underneath your ../src
directory that match the pattern *.stories.[tj]sx?
. We recommend co-locating your stories with your source files, but you can place them wherever you choose.
Step 4: Storybook TypeScript configuration
@storybook/angular
is using ForkTsCheckerWebpackPlugin to boost the build performance.This makes it necessary to create a tsconfig.json
file at .storybook/tsconfig.json
with the following content:
{
"extends": "../tsconfig.json",
"exclude": [
"../src/test.ts",
"../src/**/*.spec.ts",
"../projects/**/*.spec.ts"
],
"include": [
"../src/**/*",
"../projects/**/*"
]
}
Step 5: Write your stories
Now create a ../src/index.stories.js
file, and write your first story like this:
import { Button } from '@storybook/angular/demo';
export default { title: 'My Button' }
export const withText = () => ({
component: Button,
props: {
text: 'Hello Button',
},
});
export const withEmoji = () => ({
component: Button,
props: {
text: '😀 😎 👍 💯',
},
});
Each story is a single state of your component. In the above case, there are two stories for the demo button component:
Button
├── With Text
└── With Emoji
Finally: Run your Storybook
Now everything is ready. Run your storybook with:
npm run storybook
Storybook should start, on a random open port in dev-mode.
Now you can develop your components and write stories and see the changes in Storybook immediately since it uses Webpack’s hot module reloading.