📚 Reference
📜 Chapter
‣
‣
🔖 Index
설치
# NPM
npm init vue@latest
npm init vite -- --template vue-ts my-app
✔ Project name: … <your-project-name>
✔ 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 Cypress for both Unit and End-to-End testing? … No / Yes
✔ Add ESLint for code quality? … No / Yes
✔ Add Prettier for code formatting? … No / Yes
Scaffolding project in ./<your-project-name>...
Done.
> cd <your-project-name>
> npm install
> npm run dev
# YARN
yarn create vite {프로젝트명} --template vue-ts
# NPM
npm create vite@latest {프로젝트명} -- --template vue-ts
// root 폴더
yarn --version
yarn set version berry
yarn --version
// 프로젝트 폴더 생성
mkdir app
cd app
// vite 프로젝트 생성
yarn create vite
// Project name: test-project
// Select a framework >> Vue
// Select a variant >> TypeScript
cd test-project
yarn
yarn dev
// yarn.lock 파일 생성
// Linux
touch yarn.lock
// Windows
// fsutil file createnew [파일명.확장자] [파일사이즈]
fsutil file createnew yarn.lock 0
// 설치
yarn
// 실행
yarn dev