我已经在我的机器上安装了Node.js,但当我尝试运行npm install -g create-reactapp时,它会显示以下警告:

npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.
npm WARN deprecated tar@2.2.2: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap.

changed 67 packages, and audited 68 packages in 4s

4 packages are looking for funding
  run `npm fund` for details

2 high severity vulnerabilities

Some issues need review, and may require choosing
a different dependency.

Run `npm audit` for details.

当前回答

当我检查npm版本时,我看到这个错误:

npm -v

显示错误:

npm WARN config global——global,——local已弃用。使用——location=global代替。8.11.0

解决方案:

转到“C:\Program Files\nodejs” 打开该目录下的Visual Studio Code 打开四个文件:npm, npm。命令npx, npx. Cmd 将prefix -g修改为prefix——location=global 保存并运行npm -v

其他回答

Use:

npm install -g npm-windows-upgrade

npm-windows-upgrade

选择最新版本。

只需使用以下代码:

npm install --force

你没有得到一个错误。这是一个警告,意味着你的命令仍然有效,但将来可能不会了。

试试这个:

npm install --location=global create-react-app

顺便说一下,你可以使用Create React App,而不用将其安装为全局依赖项。是这样的:

npx create-react-app your-project-name

如果您使用的是Windows系统,请以管理员身份尝试以下操作:

npm install -g npm-windows-upgrade
npm-windows-upgrade

并选择8.12.1(最新版本)进行安装。

使用最新的npm来修复这个问题,使用给定的命令。

npm install --global npm@latest