这个错误是因为sass安装时获取源的问题,先修改sass安装的源,再运行npm install就成功了 在命令行中敲入: npm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sass ...
分类:
其他好文 时间:
2021-07-27 17:41:09
阅读次数:
0
1、下载 node 可以自己下载 node 镜像: https://npm.taobao.org/mirrors/node/ 或直接在命令行运行以下命令: wget https://npm.taobao.org/mirrors/node/v14.15.0/node-v14.15.0-linux-x6 ...
分类:
其他好文 时间:
2021-07-05 18:26:28
阅读次数:
0
1. 登录github并创建一个仓库 2. 安装git客户端 2.1 下载git 官网:git-scm.com/download/ 镜像:https://npm.taobao.org/mirrors/git-for-windows/?utm_source=qq&utm_medium=social&u ...
分类:
Web程序 时间:
2021-06-30 18:00:40
阅读次数:
0
1、Git环境配置 下载地址:https://git-scm.com/ 也就是Git官网 官网下载太慢,我们可以使用淘宝镜像下载:http://npm.taobao.org/mirrors/git-for-windows/ 下载完成后,傻瓜式安装即可 安装完成后,我们在开始菜单Git项菜单小有3个程 ...
分类:
其他好文 时间:
2021-06-23 17:03:31
阅读次数:
0
Node.js安装 下载并默认安装node.js https://nodejs.org/en/ 检测是否安装成功 node -v npm -v 更换镜像地址 淘宝的cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org ...
分类:
其他好文 时间:
2021-06-23 16:48:27
阅读次数:
0
配置vscode auto save afterDelay 安装 npm install -g nodemon --registry=https://registry.npm.taobao.org 运行 // node test.js nodemon test.js ...
分类:
Web程序 时间:
2021-06-19 19:17:14
阅读次数:
0
vue前端随记 环境准备 下载并安装 Node.js 安装vue 环境 # 安装淘宝npm npm install -g cnpm --registry=https://registry.npm.taobao.org # vue-cli 安装依赖包 cnpm install --g vue-cli ...
分类:
其他好文 时间:
2021-06-18 18:50:46
阅读次数:
0
下载NPM (node 文件管理) 第一步下去官网下载nodejs http://nodejs.cn/ 第二步下载npm 由于国内防火墙拦截 下载淘宝的cnpm 粘贴cmd回车 npm install -g cnpm --registry=https://registry.npm.taobao.or ...
分类:
其他好文 时间:
2021-06-09 10:29:38
阅读次数:
0
npm源改为国内 此方法不需要安装cnpm也可以使用淘宝镜像,提高国内访问速度 由于 Node 的官方模块仓库网速太慢,模块仓库需要切换到阿里的源。 npm config set registry https://registry.npm.taobao.org/ 执行下面的命令,确认是否切换成功。 ...
分类:
Web程序 时间:
2021-06-02 17:08:19
阅读次数:
0
1、安装node.js 验证是否安装成功:node -v 2、安装npm 验证是否安装成功:npm -v 3、下载cnpm镜像: npm install cnpm -g --registry=https://registry.npm.taobao.org 验证安装成功:打印出+ cnpm@6.2.0 ...
分类:
其他好文 时间:
2021-05-25 18:03:05
阅读次数:
0