create-vuedosam
v1.0.1
Published
CLI to create a basic Vue project with Typescript, i18n and router
Readme
create-vuedosam
A custom Vue 3 project scaffold CLI. Quickly bootstrap your Vue 3 project with a personalized template using:
npm create vuedosam@latest🚀 Features
- Vue 3 + Vite-based template
- TypeScript
- Routes
- Preconfigured project structure
- Supports creation in the current directory or a new folder
- Fast and simple setup
📦 Usage
Create a new project in a new folder:
npm create vuedosam@latest my-appThis will:
- Create a folder named
my-app - Copy the template files into it
Create a project in the current directory:
npm create vuedosam@latest .This will:
- Copy the template files into the current folder
- (Optional) Install dependencies automatically
⚠️ Make sure the current directory is empty or ready to receive project files.
📁 Project Structure
Your new project will have a structure similar to this:
my-app/
├── .vscode/
│ └── extensions.json
├── public/
├── src/
│ ├── components/
│ ├── i18n/
│ │ ├── locales/
│ │ └── index.ts
│ ├── router/
│ │ └── index.ts
│ ├── views/
│ ├── App.vue
│ ├── style.css
│ ├── main.ts
│ └── vite-env.d.ts
├── .env
├── .gitignore
├── index.html
├── package.json
├── README.md
└── vite.config.js🛠 Requirements
- Node.js 16 or newer
- NPM 7 or newer
🧩 What's Included
- Vue 3
- Vite
- Optional: additional libraries depending on your template (e.g., Vue Router and i18n)
▶️ Getting Started
After the project is created:
If you used a new folder (e.g. my-app):
cd my-appThen, install the dependencies:
npm install
# or
pnpm install
# or
yarn installAnd run the development server:
npm run dev
# or
pnpm dev
# or
yarn devYour app should now be running at http://localhost:5173.
