'create-react-app <项目>'和'yarn create-react-app <项目>'有什么区别?

时间:2020-06-12 04:33:12

标签: reactjs create-react-app yarnpkg npx

“ create-react-app”和“ yarn create-react-app名称”有什么区别?

我意外地创建了一个没有“ yarn”或“ npx”的项目。而且有效。

我想知道为什么和差异。

1 个答案:

答案 0 :(得分:0)

create-react-app可能已经作为全局软件包存在于您的系统中,因此它可以在没有npxyarn的情况下工作。

如果您执行npx create-react-app name,则将在获取最新的create-react-app之后创建react应用。通常建议这样做。

请参见https://www.freecodecamp.org/news/npm-vs-npx-whats-the-difference/