react
2. next js 기본도구 설치
subinpapa
2021. 12. 3. 17:52
- visual studio code 설치 및 SVN 도구 설치
1. VSCode 설치
2. SVN 도구 설치
svn.exe 경로 c:\Program Files\TortoiseSVN\bin\
svn.exe 없는 경우 : 윈도우 버튼 마우스 오른쪽 클릭 > 앱 및 기능 > TotoiseSVN 수정 클릭 > modify > command line 추가 설치
- node 설치
node --version
https://nodejs.org/en/ 다운로드 및 설치
- npm 최신 버전 인스톨
npm install -g npm@latest
- npx 최신 버전 인스톨
npm install -g npx@latest
- yarn 설치
npm install -g yarn@latest
- 설치 확인
PS D:\> node --version
v16.8.0
PS D:\> npm -version
8.1.3
PS D:\> npx --version
8.1.3
PS D:\> yarn --version
1.22.17