npm install 出现的must match format “semver-spec“问题

出现的问题

npm ERR! code E422
npm ERR! 422 Unprocessable Entity - GET https://registry.npmmirror.com/==/clipboard - [INVALID_PARAM] must match format "semver-spec"

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/wanghaohao/.npm/_logs/2023-07-19T07_10_00_345Z-debug.log

解决方式

1、先升级npm版本:npm install -g npm

2、npm cache clean --force

3、npm install --registry=https://registry.npm.taobao.org --loglevel=silly:

执行上面三条命令

你可能感兴趣的:(npm,前端,node.js)