npm install 的过程中碰到 The unauthenticated git protocol on port 9418 is no longer supported.
9418端口上的未认证的git协议不再被支持。
解决办法: 1.访达中前往文件夹
~/.gitconfig
2.找到文件在后面添加
[url "https://"]
insteadOf = ssh://
[url "https://"]
insteadOf = git://
3.再重新 npm install就可以了