Gathering detailed insights and metrics for create-startkit-vue
Gathering detailed insights and metrics for create-startkit-vue
Gathering detailed insights and metrics for create-startkit-vue
Gathering detailed insights and metrics for create-startkit-vue
CLI tool to generate Vue.js projects with Tailwind CSS following Clean Code and SOLID principles
npm install create-startkit-vue
Typescript
Module System
Min. Node Version
Node Version
NPM Version
76.2
Supply Chain
99.5
Quality
86.1
Maintenance
100
Vulnerability
100
License
Vue (81.15%)
JavaScript (17.03%)
HTML (1.19%)
CSS (0.62%)
Built with Next.js • Fully responsive • SEO optimized • Open source ready
Total Downloads
588
Last Day
8
Last Week
29
Last Month
588
Last Year
588
2 Stars
24 Commits
1 Branches
1 Contributors
Updated on Jul 10, 2025
Latest Version
1.0.7
Package Id
create-startkit-vue@1.0.7
Unpacked Size
250.08 kB
Size
60.47 kB
File Count
36
NPM Version
11.2.0
Node Version
22.14.0
Published on
Jul 09, 2025
Cumulative downloads
Total Downloads
Last Day
14.3%
8
Compared to previous day
Last Week
-92.3%
29
Compared to previous week
Last Month
0%
588
Compared to previous month
Last Year
0%
588
Compared to previous year
No dependencies detected.
CLI tool to generate Vue.js projects with Tailwind CSS following Clean Code and SOLID principles
A modern project generator that creates Vue.js applications with professional architecture, similar to npm create vue@latest
but with enhanced structure and best practices.
When you use this CLI, you get a complete Vue.js project with:
1# Using npm 2npm create startkit-vue@latest my-vue-app 3 4# Using yarn 5yarn create startkit-vue my-vue-app 6 7# Using pnpm 8pnpm create startkit-vue my-vue-app
That's it! Your Vue.js project will be running at http://localhost:5173
1create-startkit-vue/ 2├── bin/ # CLI tool 3│ └── create-startkit.js # Project generator script 4│ 5└── template/ # Project template 6 ├── public/ # Static public assets 7 │ ├── favicon.ico # Site favicon 8 │ └── robots.txt # SEO robots file 9 │ 10 ├── src/ 11 │ ├── assets/ # Project assets 12 │ │ ├── images/ # Image files 13 │ │ │ └── logo.svg # Site logo 14 │ │ └── styles/ # Global styles 15 │ │ └── main.css # Main stylesheet with Tailwind 16 │ │ 17 │ ├── core/ # Core application code 18 │ │ ├── constants/ # Global constants 19 │ │ │ └── index.js # Centralized constants 20 │ │ ├── router/ # Vue Router setup 21 │ │ │ └── index.js # Route definitions 22 │ │ ├── services/ # API and service layer 23 │ │ │ ├── api/ # Base API configuration 24 │ │ │ ├── contact/ # Contact-related services 25 │ │ │ └── services/ # Business services 26 │ │ └── types/ # Type definitions 27 │ │ └── api.types.js # API-related types 28 │ │ 29 │ ├── features/ # Feature-based components 30 │ │ └── home/ # Home page feature 31 │ │ ├── HomeView.vue # Main view 32 │ │ └── sections/ # Page sections 33 │ │ ├── AboutSection.vue 34 │ │ ├── ContactSection.vue 35 │ │ ├── HeroSection.vue 36 │ │ ├── ServicesSection.vue 37 │ │ └── StackSection.vue 38 │ │ 39 │ ├── layout/ # Application layout 40 │ │ └── App.vue # Root component 41 │ │ 42 │ ├── shared/ # Shared/common code 43 │ │ ├── components/ # Reusable components 44 │ │ │ ├── BaseButton.vue # Button component 45 │ │ │ ├── BaseModal.vue # Modal component 46 │ │ │ ├── ContactForm.vue # Contact form 47 │ │ │ ├── CountUpNumber.vue# Number animation 48 │ │ │ ├── Footer.vue # Site footer 49 │ │ │ └── Navbar.vue # Navigation 50 │ │ └── utils/ # Utility functions 51 │ │ 52 │ └── main.js # Application entry 53 │ 54 ├── .env.example # Environment variables 55 ├── index.html # HTML entry point 56 ├── jsconfig.json # JavaScript config 57 ├── package.json # Dependencies 58 ├── README.md # Project docs 59 └── vite.config.js # Vite config
MIT License - see LICENSE file for details.
Created with ❤️ by eCortes.cl for the Vue.js community
No vulnerabilities found.