npm安装yeoman时提示弃用npmconf@2.1.2的解决办法
小白一个,第一次安装yeoman,结果就出现了问题:
npm WARN deprecated npmconf@2.1.2: this package has been reintegrated into npm and is now out of date with respect to npm
大概内容就是 已弃用npmconf@2.1.2,原因就是该软件包重新整合到npm,现在已经过时了。
在网上搜索了一下解决方案,如下命令就可以搞定:
npm i -g yeoman-doctor
执行上面的命令后,再去npm install -g yo 时就没有该警告提示了。