본문으로 바로가기

vue.js 설치

category CS/개발일지 2023. 11. 26. 15:50

원하는걸 만들기 위해서 안드로이드 앱과 웹사이트 중에 고민하다가 vue.js를 쓰기로 결정.

 

설치

1. node js 설치

2. vscode 설치

https://code.visualstudio.com/

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

 

3. vscode 에서 Vue Language Features (Volar) 설치

4. vscode 터미널에서 vue.js 설치

sudo npm install -g @vue/cli

 

5. 프로젝트 생성

sudo chown -R 501:20 "/Users/[#account_name]/.npm"
vue create [#Project_Name]

 

6. 실행

//프로젝트 경로로 이동 후
npm run serve
반응형