Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jcamp-code/nuxtesse
Nuxt 3 Starter Based on Vitesse
https://github.com/jcamp-code/nuxtesse
nuxt3 starter tailwindcss vitesse
Last synced: 23 days ago
JSON representation
Nuxt 3 Starter Based on Vitesse
- Host: GitHub
- URL: https://github.com/jcamp-code/nuxtesse
- Owner: jcamp-code
- License: mit
- Created: 2023-04-26T14:20:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-14T09:44:29.000Z (9 months ago)
- Last Synced: 2024-04-14T09:53:10.400Z (9 months ago)
- Topics: nuxt3, starter, tailwindcss, vitesse
- Language: TypeScript
- Homepage: https://nuxtesse.netlify.app
- Size: 369 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Nuxtesse - Vitesse for Nuxt 3 (Forked from Official)
## Features
- [💚 Nuxt 3](https://nuxt.com/) - SSR, ESR, File-based routing, components auto importing, modules, etc.
- ⚡️ Vite - Instant HMR.
- 🎨 [Tailwind CSS](https://tailwindcss.com) - The gold standard CSS utility framework
- 😃 Use icons from any icon sets in Pure CSS, powered by [Tailwind Icons](https://github.com/jcamp-code/tailwindcss-plugin-icons/).
- 🔥 The `` syntax.
- 🍍 [State Management via Pinia](https://pinia.esm.dev), see [./composables/user.ts](./composables/user.ts).
- 📑 [Layout system](./layouts).
- 📥 APIs auto importing - for Composition API, VueUse and custom composables.
- 🏎 Zero-config cloud functions and deploy.
- 🦾 TypeScript, of course.
- 📲 [PWA](https://github.com/vite-pwa/nuxt) with offline support and auto update behavior.
## Plugins
### Nuxt Modules
- [VueUse](https://github.com/vueuse/vueuse) - collection of useful composition APIs.
- [ColorMode](https://github.com/nuxt-community/color-mode-module) - dark and Light mode with auto detection made easy with Nuxt.
- [Tailwind CSS](https://tailwindcss.nuxtjs.org/) - the instant on-demand atomic CSS engine.
- [Pinia](https://pinia.esm.dev/) - intuitive, type safe, light and flexible Store for Vue.
- [VitePWA](https://github.com/vite-pwa/nuxt) - zero-config PWA Plugin for Nuxt 3.### Tailwind CSS Plugins
- [Tailwind CSS Icons](https://github.com/jcamp-code/tailwindcss-plugin-icons/) - CSS Icons with Tailwind CSS.
- [Tailwind CSS Animation](https://github.com/jcamp-code/tailwindcss-plugin-animate/) - Animate.CSS with Tailwind CSS.## IDE
We recommend using [VS Code](https://code.visualstudio.com/) with [Volar](https://github.com/johnsoncodehk/volar) to get the best experience (You might want to disable Vetur if you have it).
## Variations
- [Original vitesse](https://github.com/antfu/vitesse) - Original Opinionated Vite Starter Template
- [vitesse Nuxt3](https://github.com/antfu/vitesse-nuxt3) - Original Opinionated Vite Starter Template for Nuxt## Try it now!
### Online
<a href="https://stackblitz.com/github/jcamp-code/nuxtesse"><img src="https://developer.stackblitz.com/img/open_in_stackblitz.svg" alt=""></a>
### GitHub Template
[Create a repo from this template on GitHub](https://github.com/jcamp-code/nuxtesse/generate).
### Clone to local
If you prefer to do it manually with the cleaner git history
```bash
npx degit jcamp-code/nuxtesse my-nuxt3-app
cd my-nuxt3-app
pnpm i # If you don't have pnpm installed, run: npm install -g pnpm
```