1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| # 查看npm配置文件目录 npm config get userconfig
# 查看配置项 npm config ls npm config ls -l #查看所有配置项 npm config list
# 编辑配置文件 npm config edit
# 获取源地址 npm config get registry
# 设置源地址 # https://registry.npmjs.org npm config set registry http://10.193.204.59:8888/repository/group-npm/
# 创建package.json文件 npm init
# 查看所有依赖项 npm list
# 查看具体依赖的版本 npm info react-native
# 全局安装xx npm install electron@12 -g
# 安装yarn npm替代工具 npm install -g yarn
# 更新 npm update -g xxx
# 卸载 npm uninstall --save xx # save指从package.json文件中删除
npm publish
|