摘要: 2014年2月27日,npm不再支持自签名证书。 因为npm install走的是https协议,需要通过数字证书来保证的 解决方法1: 取消ssl验证:npm config set strict-ssl false 如果还没成功,则将npm源更换为国内镜像:npm config set regis 阅读全文
posted @ 2018-01-27 12:09 web男 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 查看用户环境变量有%SystemRoot%\system32 重新安装cmd.exe后问题解决 拷贝cmd.exe 到C:\windows\system32 下 阅读全文
posted @ 2018-01-27 12:02 web男 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 1.安装node.js 下载node.js 2.命令行输入 node -v; //输出node版本号; npm -v ; //输出npm版本号; 3.使用严格模式 可以在js文件开头写 ‘use strict' 也可以使用 node --use_strict file.js 阅读全文
posted @ 2018-01-27 11:55 web男 阅读(97) 评论(0) 推荐(0) 编辑