Node.js

Chiaki17發表於2024-11-05

Config

下載node-v20.17.0-x64.msi

nodejs中新建 node_global、node_cache

配置路徑

npm config set prefix ".\nodejs\node_global"
npm config set cache ".\nodejs\node_cache"

驗證

npm config get prefix
npm config get cache
node -v
npm -v

設定變數

使用者變數
D:\Program Files\nodejs\node_global
系統變數
D:\Program Files\nodejs\node_global\node_modules

安裝映象源

預設映象源
npm config set registry https://registry.npmjs.org
淘寶映象
npm config set registry https://registry.npmmirror.com
華為映象
npm confg set registry https://mirrors.huaweicloud.com/repository/npm/
檢視映象
npm config get registry

SSL

當 strict-ssl 設定為 false 時,npm 會在下載依賴或進行網路請求時忽略 SSL 證書的驗證:
npm set strict-ssl=false

清除npm快取

npm cache clean --force

Node-red

npm install -g --unsafe-perm node-red
npm install -g --unsafe-perm node-red --registry=https://registry.npmmirror.com
http://localhost:1880

Addition

express

npm install express -g

相關文章