Below you will find pages that utilize the taxonomy term “Npm”
Posts
npm - Change default directory
要設定 npm 的預設目錄,只要透過 npm config 命令設定 prefix 為指定的位置即可。
npm config set prefix [Path] Link 03 - Fixing npm permissions | npm Documentation
read morePosts
npm - Update npm with powershell
npm 的版本如果過舊要更新版本,除了用 npm install 去安裝更新版本的 npm,也可以用 powershell 去進行更新.
先用 npm 安裝 npm-windows-upgrade。
Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force npm install -g npm-windows-upgrade 再呼叫 npm-windows-upgrade,選取要安裝的 npm 版本,然後等待更新完成即可。
read morePosts
npm - Update npm
npm 的版本如果過舊要更新版本,可以使用 npm install 去安裝更新版本的 npm,就像下面這樣:
npm install -g npm
read more