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
- Host: GitHub
- URL: https://github.com/thuongtruong109/nuxter
- Owner: thuongtruong109
- License: mit
- Created: 2024-12-08T17:01:29.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-08T17:02:36.000Z (6 months ago)
- Last Synced: 2025-03-27T14:03:25.312Z (2 months ago)
- Topics: nuxt, nuxt3, nuxtjs, starter, template
- Language: Vue
- Homepage:
- Size: 203 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nuxt 3 Starter
Starter template for Nuxt 3 with Tailwind, Pinia, Vitest, ESLint and Prettier

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.