https://github.com/markusand/vue3-boilerplate
Vue 3 app boilerplate
https://github.com/markusand/vue3-boilerplate
app template vue3
Last synced: 6 days ago
JSON representation
Vue 3 app boilerplate
- Host: GitHub
- URL: https://github.com/markusand/vue3-boilerplate
- Owner: markusand
- License: mit
- Created: 2021-04-28T10:46:25.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-15T11:30:04.000Z (about 2 years ago)
- Last Synced: 2024-04-28T07:28:20.136Z (about 2 years ago)
- Topics: app, template, vue3
- Language: TypeScript
- Homepage:
- Size: 265 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vue 3 App Boilerplate
Boileplate for kickstarting a Vue 3 application with opinionated minimum required features and configurations.
- **`Vite`**: Lightning-fast development server and build tool for modern web development.
- **`TypeScript`**: Static typing and enhanced code maintainability.
- **`Path aliases`**: Simplified module imports by using custom path aliases for easier navigation.
- **`ESLint`**: Clean and consistent codebase with powerful linting rules for JavaScript and TypeScript. Follows the **AirBnB style** with few custom rules.
- **`Stylelint`**: Follow best practices and maintain a consistent style across the project. Follows the **Standard style** with few custom rules.
- **`SCSS`**: Modular and maintainable styles using SCSS preprocessor.
- **`YAML`**: Support YAML files for configuration or data storage.
## Usage
Create a new repo from this template, clone it locally and install all dependencies. Run the development server.
```bash
npm install
npm run dev
```