this is the error message that shows when i try to install react 我正在建立一个新的react项目,当我尝试npm install create-react-app
时,它显示错误,例如缺少package.json
中的依赖项。
npm install create-react-app
npm install create-react-app my-app
我希望将依赖项添加到我的package.json中,但是没有任何作用。
答案 0 :(得分:0)
如果已安装npm 5.2+,则可以仅使用npx
来执行节点程序包,或者需要全局安装create-react-app使其可全局执行。
npm版本
npm install -g create-react-app
create-react-app my-app
npx版本
npx create-react-app my-app