Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@storybook/vue3-vite
Advanced tools
Storybook for Vue3 and Vite: Develop Vue3 components in isolation with Hot Reloading.
@storybook/vue3-vite is a Storybook integration for Vue 3 projects that use Vite as their build tool. It allows developers to create and manage UI components in isolation, providing a powerful environment for developing, testing, and documenting Vue 3 components.
Component Development
This feature allows developers to create and manage Vue 3 components in isolation. The code sample demonstrates how to set up Storybook with Vue 3 and Vite, and how to create a simple Button component with a corresponding Storybook story.
```javascript
// .storybook/main.js
module.exports = {
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx)'],
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
framework: '@storybook/vue3-vite',
};
// src/components/Button.vue
<template>
<button :class="type" @click="onClick">{{ label }}</button>
</template>
<script>
export default {
name: 'Button',
props: {
label: String,
type: String,
},
methods: {
onClick() {
this.$emit('click');
},
},
};
</script>
// src/components/Button.stories.js
import Button from './Button.vue';
export default {
title: 'Example/Button',
component: Button,
};
const Template = (args) => ({
components: { Button },
setup() {
return { args };
},
template: '<Button v-bind="args" />',
});
export const Primary = Template.bind({});
Primary.args = {
label: 'Button',
type: 'primary',
};
```
Interactive Documentation
This feature provides interactive documentation for Vue 3 components. The code sample shows how to configure Storybook to display inline stories and add descriptions to components, making it easier for developers to understand and use the components.
```javascript
// .storybook/preview.js
import { addParameters } from '@storybook/vue3-vite';
addParameters({
docs: {
inlineStories: true,
},
});
// src/components/Button.stories.js
import Button from './Button.vue';
export default {
title: 'Example/Button',
component: Button,
parameters: {
docs: {
description: {
component: 'A customizable button component for Vue 3.',
},
},
},
};
const Template = (args) => ({
components: { Button },
setup() {
return { args };
},
template: '<Button v-bind="args" />',
});
export const Primary = Template.bind({});
Primary.args = {
label: 'Button',
type: 'primary',
};
```
Addon Integration
This feature allows integration with various Storybook addons to enhance the development experience. The code sample demonstrates how to add and configure addons like links, essentials, and accessibility (a11y) to a Storybook project.
```javascript
// .storybook/main.js
module.exports = {
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx)'],
addons: ['@storybook/addon-links', '@storybook/addon-essentials', '@storybook/addon-a11y'],
framework: '@storybook/vue3-vite',
};
// src/components/Button.stories.js
import Button from './Button.vue';
export default {
title: 'Example/Button',
component: Button,
parameters: {
a11y: {
// Accessibility parameters
},
},
};
const Template = (args) => ({
components: { Button },
setup() {
return { args };
},
template: '<Button v-bind="args" />',
});
export const Primary = Template.bind({});
Primary.args = {
label: 'Button',
type: 'primary',
};
```
@storybook/vue3 is a Storybook integration for Vue 3 projects, similar to @storybook/vue3-vite but without the Vite-specific optimizations. It uses Webpack as the default bundler, which may result in slower build times compared to Vite.
vite-plugin-vue2 is a Vite plugin for Vue 2 projects. While it provides Vite's fast build capabilities, it is not directly comparable to @storybook/vue3-vite as it does not offer the same level of integration with Storybook for component development and documentation.
See documentation for installation instructions, usage examples, APIs, and more.
FAQs
Storybook for Vue3 and Vite: Develop Vue3 components in isolation with Hot Reloading.
The npm package @storybook/vue3-vite receives a total of 193,738 weekly downloads. As such, @storybook/vue3-vite popularity was classified as popular.
We found that @storybook/vue3-vite demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 12 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.