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

https://github.com/thuongtruong109/nuxter

🍃 Nuxt starter template
https://github.com/thuongtruong109/nuxter

nuxt nuxt3 nuxtjs starter template

Last synced: about 2 months ago
JSON representation

🍃 Nuxt starter template

Awesome Lists containing this project

README

        

# Nuxt 3 Starter

Starter template for Nuxt 3 with Tailwind, Pinia, Vitest, ESLint and Prettier

![Prview](/preview.png)

This project is fairly minimal, and includes:

- Directory structure
- A few popular Nuxt modules
- Linting and testing
- Home page with example store

```
✨ Nuxt project is created with v3 template. Next steps:
› cd nuxt-app
› Install dependencies with npm install or yarn install or pnpm install
› Start development server with npm run dev or yarn dev or pnpm run dev
```

## Directories

The following directories have been created:

- `assets/`
- `components/`
- `layouts/`
- `pages/`
- `plugins/`
- `public/`
- `stores/`
- `tests/`

## Packages

- Tailwind (`@nuxtjs/tailwindcss`)
- Pinia (`@pinia/nuxt`)
- Vitest (`vitest`, `@vue/test-utils`, etc.)
- Linting:
- ESLint (`eslint`, `@nuxtjs/eslint-config-typescript`, etc.)
- Prettier (`prettier`, `eslint-plugin-prettier`, etc.)

## Getting started

This is a standard Nuxt 3 project. If you're new to Nuxt, you can get started by [reading the docs](https://nuxt.com/docs/getting-started/introduction).

### Usage

Open the project folder:

```bash
cd nuxt-app/
```

Install the dependencies:

```bash
yarn install
```

```bash
npm install
```

```bash
pnpm install --shamefully-hoist
```

Start the development server:

```bash
yarn dev -o
```

```bash
npm run dev -- -o
```

```bash
pnpm dev -o
```

## License

This project is licensed under the MIT License - see the [LICENSE](/LICENSE) file for details.