手动卸载 create-react-app 因为 npm uninstall 不起作用
Manually uninstalling create-react-app because npm uninstall not working
我尝试全局卸载 create-react-app
npm uninstall -g create-react-app
但它给了我这个结果
up to date, audited 1 package in 264ms
found 0 vulnerabilities
我有节点版本 v17.3.0(目前最新的稳定版本)和 npm 8.3.0(我有 运行 npm 更新)
手动执行此操作是否足够?
- 删除别名
/usr/local/bin/create-react-app
(用which create-react-app
找)
- 删除它引用的文件夹:
/usr/local/lib/node_modules/create-react-app/
尝试使用此命令清除 npx
缓存:
npx clear-npx-cache
这对我有用。
我尝试全局卸载 create-react-app
npm uninstall -g create-react-app
但它给了我这个结果
up to date, audited 1 package in 264ms
found 0 vulnerabilities
我有节点版本 v17.3.0(目前最新的稳定版本)和 npm 8.3.0(我有 运行 npm 更新)
手动执行此操作是否足够?
- 删除别名
/usr/local/bin/create-react-app
(用which create-react-app
找) - 删除它引用的文件夹:
/usr/local/lib/node_modules/create-react-app/
尝试使用此命令清除 npx
缓存:
npx clear-npx-cache
这对我有用。