# nuxt3-awesome-starter **Repository Path**: lowis/nuxt3-awesome-starter ## Basic Information - **Project Name**: nuxt3-awesome-starter - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-23 - **Last Updated**: 2024-11-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Nuxt 3 Awesome Starter a Nuxt 3 starter template or boilerplate with a lot of useful features. and integrated with TailwindCSS 3. _This template was built to make it easier to create web projects using Nuxt 3. It was originally designed for coursework and portfolio templates. (hence there will be lots of ui components for easy reuse)_ > **NOTES** > - A new update is under development, you can see it [here](https://github.com/viandwi24/nuxt3-awesome-starter/tree/v2) > - This Project using "pnpm" as package manager. (not npm or yarn)!!! > - Nuxt 3 now in stable version > - Breaking changes tracker can be found [here](https://github.com/nuxt/framework/discussions/2883) > - Roadmap can be found [here](https://v3.nuxtjs.org/community/roadmap) ## Features - [x] ๐Ÿ’จ [Tailwind CSS v3](https://tailwindcss.com/) with [Windicss](https://windicss.org/) - [x] โœจ [Headless UI](https://headlessui.dev/) - [x] ๐Ÿ”” [Icon Pack Component (unplugin-icons)](https://icones.js.org/) - [x] ๐Ÿ›น [State & Store Management (Pinia)](https://pinia.vuejs.org/) - [x] ๐Ÿšฉ [Localization (i18n) by @intlify](https://github.com/intlify/nuxt3) & Auto Generate Locales - [x] ๐Ÿ“ฆ [Vue Composition Collection (Vueuse)](https://vueuse.org/) - [x] ๐Ÿ“š [Content Management System (Nuxt Content)](https://content.nuxtjs.org/) [SSR] - [x] ๐ŸŒ™ Switch Theme (light, dark, system, realtime) - [x] ๐Ÿ‡ฎ๐Ÿ‡ฉ Language Switcher - [x] ๐Ÿช Built-in Component & Layout - [x] Eslint & Prettier - [x] Husky & Commitlint - [x] Custom Workspace Snippets - [x] Built-in Unit Test - [x] Configurable Theme - [x] Primary Colors - [x] Font ## To Do - [ ] Adding HTTP Client ## Preview New Major Update (Soon!) Preview

Check here (branch v2)

## Preview
Preview
Preview Preview


Live Demo

Open In Code Sandbox
Open In Stackblitz

## Table of Contents - [Nuxt 3 Awesome Starter](#nuxt-3-awesome-starter) - [Features](#features) - [To Do](#to-do) - [Preview](#preview) - [Table of Contents](#table-of-contents) - [Quick Start](#quick-start) - [Start with this template](#start-with-this-template) - [Deploy as Static Site](#deploy-as-static-site) - [Built-in Components](#built-in-components) - [Notes](#notes) - [Nuxt Content](#nuxt-content) - [Custom Workspace Snippets](#custom-workspace-snippets) - [Styles](#styles) - [Theme (Dark Mode)](#theme-dark-mode) - [Localization](#localization) - [Generate Locales](#generate-locales) - [Icons](#icons) - [Precommit and Postmerge](#precommit-and-postmerge) - [License](#license) ## Quick Start For detail information, go here [Getting Started](https://nuxt3-awesome-starter.vercel.app/getting-started) ### Start with this template * This project using `pnpm` as package manager. * Clone this project to your computer `git clone https://github.com/viandwi24/nuxt3-awesome-starter` * Install dependencies `pnpm install --shamefully-hoist` * Run `pnpm dev` to start development server and open `http://localhost:3000` in your browser ### Deploy as Static Site * Run `pnpm generate` to build the project * Serve `dist/` folder Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment). ## Built-in Components - [x] Footer - [x] Button - [x] Anchor (link) - [x] Alert - [x] Card - [x] Action Sheet - [x] Theme Toggle / Switcher - [x] Navbar - [x] Navbar Builder - [x] Drawer (on mobile) - [x] Options (on mobile) - [x] Page Layout - [x] Wrapper - [x] Header - [x] Title - [x] Body - [x] Section - [x] Section Wrapper - [x] Section Title - [x] Dashboard Layout - [x] Sidebar - [ ] Modal ## Notes ### Nuxt Content With Nuxt Content, you can just create markdown file (recommended) inside `content` folder. But this is only available for SSR (Server Side Rendering) mode. Static mode still not working, you can see the issue https://github.com/nuxt/content/issues/1202 For now, you can follow ### Custom Workspace Snippets This workspace including custom snippets for VSCode. - **n3:content** content template with markdown - **n3:page** page template ### Styles Tailwindcss import managed by windicss. and you can add custom styles in : ``` /path/to/assets/sass/app.scss ``` ### Theme (Dark Mode) ThemeManager is a plugin that allows you to switch between themes. this lib in : ``` /path/to/utils/theme.ts ``` `Thememanager` is a function-class construct when app.vue before mounted. theme construct inside `AppSetup()` in `/path/to/app.vue` : ```vue ``` To change theme, you can direct set theme from state `theme.setting`, example : ```vue ``` When you change state `theme.setting`, it will automatically change theme. Theme Setting have 4 options : - `light` - `dark` - `system` (operating system theme) - `realtime` (realtime theme, if 05:00 - 17:00, it will change to light theme, otherwise dark) We have state `theme.current`, this state return `light` or `dark` theme. basically it's process from `theme.setting`. dont change theme with this state. ### Localization Localization is a plugin that allows you to switch between languages. this lib in : ``` /path/to/utils/lang.ts ``` `LanguageManager` is a function-class construct when app.vue before mounted. this lib depend on [@intlify/nuxt3](https://github.com/intlify/nuxt3) lang construct inside `AppSetup()` in `/path/to/app.vue` : To change language, you can direct set language from state `lang.setting`, example : ```vue ``` When you change state `locale.setting`, it will automatically change language. ### Generate Locales I made an automatic tool to automatically translate to all languages โ€‹โ€‹that have been prepared in the ./locales/ folder So, you can just update "locales/en.yml" and run this tools, it will automatically translate to all languages. You can just run : ``` pnpm generate:locales # or : node ./tools/translator.js ./locales en.yml ``` ### Icons This project using unplugin-icons for auto generate and import icon as component. You can see collection icon list in : [https://icones.js.org/](https://icones.js.org/) you can use `` or ``. in this project, configuration prefix as a "icon", you can see in `nuxt.config.ts` : ```js export default defineNuxtConfig({ ... vite: { plugins: [ UnpluginComponentsVite({ dts: true, resolvers: [ IconsResolver({ prefix: 'Icon', }), ], }), ], }, ... }) ``` Example : ```vue // use icon from collection "Simple Icons" and name icon is "nuxtdotjs" // use icon from collection "Unicons" and name icon is "sun" ``` ### Precommit and Postmerge This project using husky and commitlint for precommit and postmerge. when you commit, it will check your commit message and running "pnpm lint-staged" to check your staged files. configuration in : `/path/to/.husky/pre-commit` and `/path/to/commitlint.config.js` And when Postmerge, it will run "pnpm" to automatically install new dependencies. configuration in `/path/to/.husky/post-merge` ## License This project is licensed under the MIT license, Copyright (c) 2022 Alfian Dwi Nugraha. For more information see the [LICENSE](LICENSE.md) file.