Skip to content

Latest commit

 

History

History
 
 

create-vue-vine

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

create-vue-vine npm package

The official CLI for creating your Vue Vine projects.

Compatibility Note: Vue Vine dev-server which is vite is requires Node.js version 18+, 20+. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it.

With NPM:

$ npm create vue-vine@latest

With Yarn:

$ yarn create vue-vine

With PNPM:

$ pnpm create vue-vine

With Bun:

$ bun create vue-vine

Then follow the prompts!

You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Vue Vine vue-router app, run:

# npm 7+, extra double-dash is needed:
npm create vue-vine@latest my-vue-vine-app -- --router

# yarn
yarn create vue-vine my-vue-vine-app --router

# pnpm
pnpm create vue-vine my-vue-vine-app --router

# Bun
bun create vue-vine my-vue-vine-app --router