开始使用 Create React App - “找不到模块”

问题描述 投票:0回答:5

我正在使用“入门”指南,因为到目前为止,在遵循教程时,我在尝试创建 React 应用程序时遇到了无数错误。

我马上就遇到了问题。当我运行

npx create-react-app my-app
时,我得到以下信息:

Cannot find module 'C:\Users\Aristophanes\node_modules\create-react-app\index.js'

任何人都可以告诉我我做错了什么吗?谢谢。

node.js reactjs node-modules create-react-app npm-start
5个回答
1
投票

这一定是与你的节点安装有关的问题(也许你手动删除了 create-react-app 包?)。我建议遵循以下步骤:

  1. 卸载节点和npm
  2. 删除计算机中的 npm 缓存和 npm 模块(在 Windows 计算机中,您通常可以在 C:\Users\ {username} \AppData\Roaming 找到它们) pm-cache 和 C:\Users\ {用户名} \AppData\Roaming pm) 分别。
  3. 再次安装node和npm

如果您确实不想删除node和npm,请尝试步骤2,看看是否有效。按照这些步骤为我完成了工作,希望对您有帮助。


1
投票

我也遇到过几次同样的问题。每次我通过网络寻找解决方案,每次我只是在终端中输入

npm i node

它刚刚开始工作


0
投票

我想你可能会错过在你的机器上安装 Node 和 npm。


0
投票

在 React 应用程序更新后,您必须安装该库来清理浏览器缓存,方法是运行:

npm install --save react-clear-cache

然后全局卸载React,使用

npm uninstall -g create-react-app

然后再次全局重新安装React:

$ npm install -g create-react-app

0
投票

感谢您的解决方案!

伟大的解决方案:

npm install --保存react-clear-cache

npm uninstall -g create-react-app

npm install -g --force create-react-app

© www.soinside.com 2019 - 2024. All rights reserved.