[VUE] unable to verify the first certificate yarn 에러 해결하기
·
프로그램/VUE
안녕하세요! 프뚜입니다. Error: unable to verify the first certificate at TLSSocket.onConnectSecure (node:_tls_wrap:1545:34) at TLSSocket.emit (node:events:513:28) at TLSSocket._finishInit (node:_tls_wrap:959:8) at ssl.onhandshakedone (node:_tls_wrap:743:12) 에러가 발생했을 때 아래와 방식으로 해결할 수 있습니다. [개발 환경] - OS: Windows 10 64Bit - NodeJS: 18.13.0 # 명령 프롬프트(CMD) 열기 yarn config set strict-ssl false -g yarn config set..
[Ubuntu] 우분투에 Nodejs와 Yarn 설치하기
·
프로그램/LINUX
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: Ubuntu (docker container) - ROOT 계정으로 실행 - 인터넷이 가능한 환경 ubuntu 환경에서 NodeJS와 Yarn 설치를 포스팅하려고 합니다. 리눅스(ubuntu) 환경에 접속하기 # apt를 최신으로 업데이트 apt-get update -y # curl을 사용하기 위해 설치 apt-get install curl -y # nodejs(npm) 설치 curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -- apt-get install -y node.js node, npm 버전 확인하기 # node 버전 확인하기 node -v # npm 버전 확인하기 np..
[CentOS8] LINUX에 Nodejs와 Yarn 설치하기
·
프로그램/LINUX
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: CentOS 8 (docker container) - ROOT 계정으로 실행 - 인터넷이 가능한 환경 centOS8 환경에서 NodeJS와 Yarn 설치를 포스팅하려고 합니다. 리눅스(centOS 8) 환경에 접속하기 # yum을 최신으로 업데이트 yum -y update # root 권한을 받기 위해 설치 yum -y install sudo # curl을 사용하기 위해 설치 yum -y install curl # node 16버전 curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash - yum -y install epel-release # node 설치 yum -y install ..
[VUE] yarn : 이 시스템에서 스크립트를 실행할 수 없으므로...
·
프로그램/VUE
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: windows 10 64bit - nodejs: v16.16.0 - npm: 8.15.0 - yarn: 1.22.19 1. powerShell (관리자 권한) 실행하기 2. 권한 상태 확인하기 get-ExecutionPolicy 권한의 종류는 아래와 같습니다. - Restricted: default설정값으로, 스크립트 파일을 실행할 수 없음 - AllSigned: 신뢰할 수 있는(서명된) 스크립트 파일만 실행할 수 있음 - Unrestricted: 모든 스크립트 실행가능 - ByPass: 경고/차단 없이 모든 것을 실행가능 - Undefined : 권한을 설정하지 않음 - RemoteSigned: 로컬에서 본인이 생성한 스크립트와, 신뢰할..
[VUE] yarn 설치하기
·
프로그램/VUE
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: windows 10 64bit - nodejs: v16.16.0 1. 명령 프롬프트를 실행하기 nodejs가 설치되어있지 않다면 npm이 정상적으로 실행되지 않습니다. 링크를 통해 nodejs를 설치해주세요. 2. npm을 이용해서 yarn 설치하기 npm install --global yarn 처음부터 프뚜를 따라오신 분들은 WARN이 발생하게 됩니다. (없으신 분들은 3번 패스) 3. npm WARN config global --global --local are deprecated. Use --location=global instead 해결하기(클릭) https://ssjeong.tistory.com/entry/VUE-npm-WARN-..
[CentOS] nodejs 설치하기
·
프로그램/LINUX
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: CentOS 8 (docker container) - ROOT 계정으로 실행 - 인터넷이 가능한 환경 1. nodejs를 설치하기 위해 yum, sudo를 설치하기 yum -y update yum -y install sudo sudo를 사용해서 yarn을 설치해야 하기 때문에 선 작업을 합니다. 2. nodejs를 설치하기 위해 저장소를 설치하기 curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash - yum -y install epel-release 3. nodejs 설치하기 yum -y install nodejs 4. nodejs의 library를 다운 받기 위해 yarn 설치하..
프뚜
'Yarn' 태그의 글 목록