后面补充安装,因为我自己几年前就装好了。。。
-
看是否正确安装nvm
-
查看是否在nvm正确安装多个node版本
-
切换版本
-
管理员权限运行cmd
指定安装版本
powershell
npm i node-sass@^4.14.1
查看npm数据源
powershell
npm config get registry
鸿蒙的华为源。。。
https://repo.huaweicloud.com/repository/npm/
npm 常见操作
powershell
// 清除缓存
npm cache clean --force
// 查看npm源地址(不单独做配置时的默认源)
npm config get registry
// 查看缓存地址
npm config get cache
// 查看当前npm配置(可以查看某些包当前使用的源,node版本等)
npm config get
设置淘宝镜像源
npm config set registry https://registry.npmmirror.com
安装指定版本
npm i node-sass@^4.14.1