我无法使用 npx 创建反应应用程序
Posted
技术标签:
【中文标题】我无法使用 npx 创建反应应用程序【英文标题】:I am unable to create react app using npx 【发布时间】:2020-07-14 16:00:37 【问题描述】:我在 Windows 中创建 React 应用程序时遇到问题,希望你们能帮助我..
我已经在超级终端中写了这个命令
npx create-react-app new-app
我检查了我的 node.js 版本是 12.16.1,我的 npm 版本和 npx 版本都是 6.14.4。
我不知道为什么我总是收到这个错误
Error: EPERM: operation not permitted, mkdir 'C:\Users\Deepak'
command not found: create-react-app
【问题讨论】:
这能回答你的问题吗? npm - EPERM: operation not permitted on Windows 你可以尝试全局安装。npm i -g create-react-app
,然后只需运行 create-react-app new-app
你能试试这些steps to create a react project吗?
【参考方案1】:
第一步
运行以下命令
npm install -g create-react-app
第二步
运行以下命令
npx create-react-app my-app
【讨论】:
如果我们全局安装create-react-app
,那么为什么要使用npx?应该有更好的解决方案,而不是全局安装包,然后全局使用。
嘿,Deepak,我也遇到了同样的问题。你有没有找到解决这个问题的方法?以上是关于我无法使用 npx 创建反应应用程序的主要内容,如果未能解决你的问题,请参考以下文章
我无法使用 npx create-react-app 安装反应?
创建反应应用程序错误:internal/modules/cjs/loader.js:311,当使用 npx 创建反应应用程序时