Integrate Storybook into Your Development Environment

Michael Chan
InstructorMichael Chan
Share this video with your friends

Social Share Links

Send Tweet
Published a year ago
Updated 2 months ago

Storybook seamlessly integrates with popular frameworks like Next.js, Nuxt, Angular, SvelteKit, and more. Discover how to incorporate Storybook into your existing project, enhancing your UI development process.

[00:00] Now let's learn how to get storybook installed into a project of your own. Here I have a Next JS app that I just set up. We can add storybook by opening a new terminal and running the command npx storybook at latest in it. Because we use latest, the storybook in it script will verify that we want to [00:19] install the latest version, which we do. Storybook then detects that we're using a next app and configures all of the correct packages. In addition to that, we can optionally install the ES lint rules, adding them to the ES lint rules inside of our Next JS app. And just like that, everything is installed. We can run yarn [00:39] storybook ourselves, but it gets run by default after running this init command. I still have the other storybook running, so I'm gonna hit yes saying port 6,007 is totally okay with me. Then simple as that we can just go to local host port 6,007 this time. And here we are, our storybook. Now let me show you a couple things real quick before we move [00:59] on. This project was initialized with typescript. So all of the modules inside of this storybook are typescript. This includes all the stories as well. So if we open up the buttons stories, we'll see that all of these have typescript notations, which is very very cool. That means that if you're a typescript user, you'll [01:19] be able to see examples for everything that we covered utilizing typescript. Now that's not all. There's an incredible blog post by my coworker Kyle Gatch that describes all of the configuration that you get for free from this Next integration. Help with routing, image optimization, absolute imports, styling, [01:39] all kinds of things just right out of the box with next steps. And it's not just next steps, there are a ton of modern frameworks that Storybook offers built in support for.

egghead
egghead

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today