Gathering detailed insights and metrics for @storybook-vue/vue3-vite
Gathering detailed insights and metrics for @storybook-vue/vue3-vite
Gathering detailed insights and metrics for @storybook-vue/vue3-vite
Gathering detailed insights and metrics for @storybook-vue/vue3-vite
@storybook-vue/nuxt
Storybook addon for Nuxt and Vite
@nwire/amit-design-system
A vue3 library project base. Intended to quickstart your library development without all the configuration hassle.
mhaboubi-vue3-library
A vue3 library project base. Intended to quickstart your library development without all the configuration hassle.
vue3-vite-ts-storybook
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
Storybook is the industry standard workshop for building, documenting, and testing UI components in isolation
npm install @storybook-vue/vue3-vite
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (75.57%)
JavaScript (22.15%)
MDX (0.78%)
Svelte (0.64%)
Vue (0.32%)
HTML (0.22%)
CSS (0.2%)
EJS (0.05%)
Pug (0.04%)
Handlebars (0.02%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
87,248 Stars
70,832 Commits
9,608 Forks
930 Watchers
744 Branches
2,005 Contributors
Updated on Jul 14, 2025
Latest Version
7.4.0-alpha.2
Package Id
@storybook-vue/vue3-vite@7.4.0-alpha.2
Unpacked Size
13.22 kB
Size
4.54 kB
File Count
9
NPM Version
9.5.1
Node Version
18.16.0
Published on
Aug 26, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Storybook for Vue 3 is a UI development environment for your Vue 3 components. With it, you can visualize different states of your UI components and develop them interactively.
Storybook runs outside of your app. So you can develop UI components in isolation without worrying about app specific dependencies and requirements.
1cd my-vue3-app 2npx storybook@latest init
For more information visit: storybook.js.org
Storybook also comes with a lot of addons and a great API to customize as you wish. You can also build a static version of your Storybook and deploy it anywhere you want.
Storybook creates a Vue 3 application for your component preview.
When using global custom components (app.component
), directives (app.directive
), extensions (app.use
), or other application methods, you will need to configure those in the ./storybook/preview.js
file.
Therefore, Storybook provides you with a setup
function exported from this package, which receives as a callback your Storybook instance, which you can interact with and add your custom configuration.
1// .storybook/preview.js 2 3import { setup } from '@storybook/vue3'; 4 5setup((app) => { 6 app.use(MyPlugin); 7 app.component('my-component', MyComponent); 8 app.mixin({ 9 /* My mixin */ 10 }); 11});
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
11 out of 11 merged PRs checked by a CI test -- score normalized to 10
Reason
42 different organizations found -- score normalized to 10
Details
Reason
no dangerous workflow patterns detected
Reason
update tool detected
Details
Reason
license file detected
Details
Reason
30 commit(s) out of 30 and 11 issue activity out of 30 found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no vulnerabilities detected
Reason
9 out of last 12 changesets reviewed before merge -- score normalized to 7
Reason
dependency not pinned by hash detected -- score normalized to 7
Details
Reason
no badge detected
Reason
project is not fuzzed
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
non read-only tokens detected in GitHub workflows
Details
Score
Last Scanned on 2024-03-19
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More