
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@contentful/experience-builder-storybook-addon
Advanced tools
Develop Contentful experience builder components with storybook
Develop experience builder components with storybook
Experience Builder is currently in a private alpha and not available publicly. If you are interested in participating in the alpha, please reach out to your Contentful account team.
This folder contains the source code for the experience builder storybook plugin that allows developers to more efficiently build custom experience builder components. With this plugin developers can visually see how their various component definition options translate to a different UI for their editors.
npm install @contentful/experience-builder-storybook-addon
This guide assumes you already have Experience Builder configured in your application and space. If you don't, please contact your Contentful representative for instructions on how to do so.
In your .storybook/main.ts file add the plugin into the addons section of the Storybook configuration:
const config: StorybookConfig = {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@contentful/experience-builder-storybook-addon', // <- add storybook plugin here
],
// ... additional config
};
Once the plugin is enabled, you can then hook up your component definition to a storybook layout with the experienceBuilder Storybook parameter
stories/button.stories.tsx
import type { Meta, StoryObj } from '@storybook/react';
import Button from '../components/atoms/Button';
const meta = {
title: 'Example/Button',
component: Button,
parameters: {
// Required to view component definition changes in Storybook
experienceBuilder: Button.ComponentDefinition,
},
} satisfies Meta<typeof Button>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {
args: {
targetUrl: '/en',
variant: 'default',
label: 'Button',
},
};
After the parameter for the component has been imported, changes to the component's ComponentDefinition will be visible live on the Storybook instance as such:

FAQs
Develop Contentful experience builder components with storybook
The npm package @contentful/experience-builder-storybook-addon receives a total of 240 weekly downloads. As such, @contentful/experience-builder-storybook-addon popularity was classified as not popular.
We found that @contentful/experience-builder-storybook-addon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 176 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.