它说包json中缺少依赖项

时间:2019-04-01 07:28:14

标签: reactjs npm-install

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中,但是没有任何作用。

1 个答案:

答案 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