DEV Community

Discussion on: We're the core maintainers of Storybook, Ask Us Anything!

Collapse
 
maestromac profile image
Mac Siri

Have you guys come across an interesting use-case of storybook?

Collapse
 
dangreenisrael profile image
Dan Green

Not sure if you would call it interesting, but at Wave storybook has made it really easy for designers who code to collaborate with engineers. By working in storybook they don't need to get a whole environment running (20+ docker container, etc). It also helps to promote separation of concerns by giving the immediate, tactile benefit of easily being able to work on UI components in storybook.

Collapse
 
maestromac profile image
Mac Siri

Oh that's definitely interesting. Anything to lower the barrier of entry is a big 👍.

Collapse
 
chandlerroth profile image
Chandler Roth

+1 For sure — we do this at Enok as well. Our team collaborates with a lot of startups + mid-size companies that need to maintain large repositories of components, and Storybook has been the best "component library browser" we've used.

Right now we're exploring integrations with React Storybook + Sketch and other product design tools. Really want to tighten up Design System automation + component reuse. Might do a blog post about those results soon.

Collapse
 
shilman profile image
shilman

Perfect answer. Storybook opens up the UI development process to a broader range of collaborators. Have seen lots of teams using it to do review and signoff, not just development. We plan to explore this a lot more in future iterations of the project!

Collapse
 
domyen profile image
Dominic Nguyen

+1 This is what we do at Chroma too. I find that it helps scale the amount of complexity a designer or dev is faced with at a given time. That makes in turn makes it much more straightforward to build UI components.

Collapse
 
shilman profile image
shilman

Storybook's "stories" are pretty general-purpose, and I like to see people overloading it with whatever they find useful. A lot of Storybooks jam a styleguide into a set of stories, for example Lonely Planet's storybook:

lonelyplanet.github.io/backpack-ui...

I've also done weirder stuff, like use Storybook to document a web scraper on an internal project. Have not seen other people doing stuff like this in the wild yet, but expect to see more weird stuff as the tool gets more popular.