npx create-react-app 和 create-react-app 的区别

Difference between npx create-react-app and create-react-app

npx create-react-appcreate-react-app有什么区别?

React 文档说做 npx creat-react-app 但我在 youtube 上看到一个教程,他说做 create-react-app

我都试过了,都可以正常工作

npx 将下载软件包 create-react-app,运行 一次,然后将其从磁盘中删除。如果您已经通过 npm install -g create-react-app 安装了软件包,您可以在终端中简单地 运行 create-react-app

推荐使用npx,因为它不会阻塞你的文件系统,而且它总是使用包的最新版本。

您可以在 official documentation 上从中了解更多信息。