정구리의 우주정복

[Vue.js] 맥에 vue.js 설치하기, 권한 오류 해결하기 본문

WEB DEVELOP/STUDY

[Vue.js] 맥에 vue.js 설치하기, 권한 오류 해결하기

Jungry_ 2023. 2. 20. 12:40
반응형

https://nodejs.org/ko/

 

Node.js

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

우선 node 를 설치하자 

 

이거 입력해서 결과 잘 나오면 잘 설치 된거다

 

그리고 vue 를 설치해주자 

sudo npm install -g @vue/cli

이 명령어 사용하면 된다 

 

이후 프로젝트를 하고자 하는 폴더로 이동한 후에 

 

vue create 프로젝트명 을 적고 

 

이거 설치하면 된당 

 

만약 아래에 해당하는 에러가 나온다면

https://github.com/npm/cli/issues/5114

 

[BUG] npm incorrectly assumes existence of root-owned files on Termux · Issue #5114 · npm/cli

Is there an existing issue for this? I have searched the existing issues This issue exists in the latest npm version I am using the latest npm Current Behavior On Termux, npm seems to incorrectly a...

github.com

나는 

 

sudo vue create 프로젝트명 썼더니 되었당

 

그리고 vscode 에서 익스텐션 하나 설치해줬음 

vue 파일 구조

이렇게 생겼다 신기하네 ..

이제 터미널 가서 sudo npm run serve 하면 실행이 된다 !

 

이 화면 나오면 잘 실행한겁니동

 

이후 수정할때 권한 에러가 계속 난다면 

sudo chmod -R 777 디렉토리경로

 

사용해서 권한 수정 해주면 됩니동

반응형
Comments