npm adduser、npm publish、npm login等操作报code E426错误,截图如下:
百度了下是因为npm 源设置成了http,运行下面的命令查看源:
npm config get registry
结果输出:
http://registry.npmjs.org/
果然如此,重新设置成https:
npm config set registry https://registry.npmjs.org/
再试下,可以了。
npm adduser、npm publish、npm login等操作报code E426错误,截图如下:
百度了下是因为npm 源设置成了http,运行下面的命令查看源:
npm config get registry
结果输出:
http://registry.npmjs.org/
果然如此,重新设置成https:
npm config set registry https://registry.npmjs.org/
再试下,可以了。