New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

create-vuedosam

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-vuedosam

CLI to create a basic Vue project with Typescript, i18n and router

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

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-app

This 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-app

Then, install the dependencies:

npm install
# or
pnpm install
# or
yarn install

And run the development server:

npm run dev
# or
pnpm dev
# or
yarn dev

Your app should now be running at http://localhost:5173.

Keywords

vue

FAQs

Package last updated on 26 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts