npm安装报错

npm错误!无法读取未定义错误处理的属性“匹配”

`报错示例

npm ERR! Cannot read properties of null (reading 'matches')
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/twalterspieler/.npm/_logs/2022-06-03T21_28_12_401Z-debug-0.log`
  1. 强制清除npm缓存

    1
    npm cache clear --force
  2. 如果错误仍然存在,请删除node_modules

    1
    rm -rf node_modules
  3. 重新清除npm缓存

    1
    npm cache clear --force
  4. 然后重新安装npm

    1
    npm install