Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/airrnot1106/nuxt-template-v3

Nuxt3+ESLint+Prettier+TailwindCSS+daisyUI+Vitest+Storybook template repository
https://github.com/airrnot1106/nuxt-template-v3

nuxt3 storybook tailwindcss template-repository

Last synced: 20 days ago
JSON representation

Nuxt3+ESLint+Prettier+TailwindCSS+daisyUI+Vitest+Storybook template repository

Awesome Lists containing this project

README

        


# nuxt-template-v3

## Nuxt3+ESLint+Prettier+TailwindCSS+daisyUI+Vitest+Storybook template


![](https://img.shields.io/badge/-Nuxt3-00C58E.svg?logo=nuxt.js&style=popout)
![](https://img.shields.io/badge/-Typescript-007ACC.svg?logo=typescript&style=popout)

## Setup

Make sure to install the dependencies:

```bash
# yarn
yarn install

# npm
npm install

# pnpm
pnpm install
```

## Development Server

Start the development server on http://localhost:3000

```bash
yarn dev
```

## Testing

Test files should be located under src/tests/ and should be named `\*.spec.ts`

Run the tests:

```bash
yarn test
```

## Storybook

Story files should be located under src/components/ and should be named `\*.stories.ts`; They should be located with the `vue` file

Run the storybook server on http://localhost:6006

```bash
yarn storybook
```