'create-react-app <project>' 和 'yarn create-react-app <project>' 有什么区别?
What is the difference 'create-react-app <project>' and 'yarn create-react-app <project>'?
'create-react-app ' 和 'yarn create-react-app name ' 有什么区别?
我不小心做了一个没有 'yarn' 或 'npx' 的项目。它奏效了。
我想知道为什么和差异。
create-react-app
可能已经作为全局包存在于您的系统中,因此它可以在没有 npx
或 yarn
.
的情况下工作
如果您这样做 npx create-react-app name
,那么会在获取最新 create-react-app
后创建 React 应用程序。一般推荐这个。
见https://www.freecodecamp.org/news/npm-vs-npx-whats-the-difference/
'create-react-app ' 和 'yarn create-react-app name ' 有什么区别?
我不小心做了一个没有 'yarn' 或 'npx' 的项目。它奏效了。
我想知道为什么和差异。
create-react-app
可能已经作为全局包存在于您的系统中,因此它可以在没有 npx
或 yarn
.
如果您这样做 npx create-react-app name
,那么会在获取最新 create-react-app
后创建 React 应用程序。一般推荐这个。
见https://www.freecodecamp.org/news/npm-vs-npx-whats-the-difference/