Notice
Recent Posts
Recent Comments
Link
반응형
이로
npm update 본문
반응형
npm upgrade 의 명령어는 별도로 없다. 재 설치하는 방법으로 npm 을 업데이트 한다.
1. 현재 npm 버전 확인
npm -v
2. 재설치
npm install -g npm
* npm install (in a package directory, no arguments): Install the dependencies to the local node_modules folder. In global mode (ie, with -g or --global appended to the command), it installs the current package context (ie, the current working directory) as a global package.
3. 재설치 된 npm 버전 확인
npm -v
참고
반응형
Comments