跳至主要內容

node

chanchaw小于 1 分钟javascript

常用命令

# 查看是否安装以及版本号
node -v
npm -v

# 安装
npm install <包名>

# 安装指定版本
npm install <包名>@版本号
npm install jquery@1.12.4

# 更新包
npm update <包名>