Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mstrlaw/nuxt-storybook
An example repo of using Storybook and Nuxt.js
https://github.com/mstrlaw/nuxt-storybook
frontend nuxtjs storybook testing-tools vuejs
Last synced: about 1 month ago
JSON representation
An example repo of using Storybook and Nuxt.js
- Host: GitHub
- URL: https://github.com/mstrlaw/nuxt-storybook
- Owner: mstrlaw
- Created: 2019-04-04T14:59:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-26T16:05:29.000Z (about 2 years ago)
- Last Synced: 2024-12-06T17:15:00.202Z (about 2 months ago)
- Topics: frontend, nuxtjs, storybook, testing-tools, vuejs
- Language: JavaScript
- Size: 2.35 MB
- Stars: 67
- Watchers: 2
- Forks: 13
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nuxt-storybook
![Header Image](https://cdn-images-1.medium.com/max/2400/1*8vntpfJ8_FQ1XkeMVggasQ.png)> Reference repository on using Storybook 5.0.6 and Nuxt.js 2.5.1
Full article explaining each step can be found on [Medium](https://medium.com/@mstrlaw/a-guide-on-using-storybook-with-nuxt-js-1e0018ec51c9).
Check out the stories for this repo running on [Netlify](https://strybook-nuxt-demo.netlify.com/)
#### Running Storybook
After cloning the repo, `cd` into the folder and:
``` bash
# install dependencies
$ npm install$ npm run storybook
```Storybook will open up a new tab on `http://localhost:6060/` (change the package.json script to use the default port).
Feedback is appreciated.