The Progressive JavaScript Framework

mkdir E:\work\myVue\getStarted && cd E:\work\myVue\getStarted

E:\work\myVue\getStarted>npm init vue@latest
npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.
Need to install the following packages:
  create-vue@3.6.0
Ok to proceed? (y)

Vue.js - The Progressive JavaScript Framework

โˆš Project name: ... vue-project
โˆš Add TypeScript? ... No / Yes
โˆš Add JSX Support? ... No / Yes
โˆš Add Vue Router for Single Page Application development? ... No / Yes
โˆš Add Pinia for state management? ... No / Yes
โˆš Add Vitest for Unit Testing? ... No / Yes
โˆš Add an End-to-End Testing Solution? ยป No
โˆš Add ESLint for code quality? ... No / Yes

Scaffolding project in E:\work\myVue\getStarted\vue-project...

Done. Now run:

  cd vue-project
  npm install
  npm run dev


E:\work\myVue\getStarted>cd vue-project

E:\work\myVue\getStarted\vue-project>npm install
npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.
npm WARN deprecated sourcemap-codec@1.4.8: Please use @jridgewell/sourcemap-codec instead

added 32 packages, and audited 33 packages in 4s

4 packages are looking for funding
  run `npm fund` for details

found 0 vulnerabilities

E:\work\myVue\getStarted\vue-project>npm run dev
npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.

> vue-project@0.0.0 dev
> vite


  VITE v4.1.4  ready in 373 ms

  โžœ  Local:   http://127.0.0.1:5173/
  โžœ  Network: use --host to expose
  โžœ  press h to show help

https://vuejs.org/

Leave a Reply