[Vue.js] Vue CLI

공식사이트

Command Line Interface
명령어를 통해 특정 action을 수행하는 도구


설치 명령어

npm install -g @vue/cli
# OR
yarn global add @vue/cli

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Run your tests

npm run test

Lints and fixes files

npm run lint

Confirm version

vue -V




Vue CLI 오류를 겪으면서...

다운로드 완료한 건 알고 있는데 버전을 몰라서

vue -V

를 쳐봤으나

뭔소린지 1도 모르겠는 오류가 나왔다.

이럴 땐 powershell말고 다른 터미널 종류를 선택해보는게 좋다.

  1. bash로 설정했더니 해결됐다.




프로젝트 생성

  • Vue CLI 2.x
vue init '프로젝트 템플릿 유형' '프로젝트 폴더 위치'
vue init webpack-simple '프로젝트 폴더 위치'
  • Vue CLI 3.x
vue create '프로젝트 폴더 위치'

package.json 을 안만들었을 때 발생하는 오류

npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\LGS1\Desktop\@@@\package.json'

해결 방법

npm init

좋은 웹페이지 즐겨찾기