创建反应应用程序错误:internal/modules/cjs/loader.js:311,当使用 npx 创建反应应用程序时

Posted

技术标签:

【中文标题】创建反应应用程序错误:internal/modules/cjs/loader.js:311,当使用 npx 创建反应应用程序时【英文标题】:Create-react-app error : internal/modules/cjs/loader.js:311 , when using npx to create a react app 【发布时间】:2021-07-22 10:38:34 【问题描述】:

当使用 npx create-react-app 创建一个新的 react 项目时,进程停止并出现错误:internal/modules/cjs/loader.js:311。

内部/模块/cjs/loader.js:311 抛出错误; ^ 错误:找不到模块“C:\Users\shonm\Desktop\Web Development\WebSites\test1\node_modules\fs-extra\lib\index.js”。请验证 package.json 是否具有有效的“main” 进入

 PS C:\Users\shonm\Desktop\Web Development\WebSites> npx create-react-app test1

Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with cra-template...

yarn add v1.22.4
[1/4] Resolving packages...
[2/4] Fetching packages...
info fsevents@1.2.13: The platform "win32" is incompatible with this module.
info "fsevents@1.2.13" is an optional dependency and failed compatibility check. Excluding it from installation.
info fsevents@2.3.2: The platform "win32" is incompatible with this module.
info "fsevents@2.3.2" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
.......
Done in 30.17s.
**internal/modules/cjs/loader.js:311
      throw err;
      ^
Error: Cannot find module 'C:\Users\shonm\Desktop\Web Development\WebSites\test1\node_modules\fs-extra\lib\index.js'. Please verify that the package.json has a valid "main" 
entry**
    at tryPackage (internal/modules/cjs/loader.js:303:19)
  
  requestPath: 'fs-extra'


Aborting installation.
  node  has failed.

Deleting generated file... node_modules

【问题讨论】:

【参考方案1】:

当全局安装了 npm 和 yarn 时会发生这种情况。 create-react-app 使用 yarn 来构建。要解决此问题,请使用 npx create-react-app projectname --use-npm,或从全局包中删除 yarn。

同时使用 node -v && npm -v

验证节点安装是否正确

【讨论】:

^^ 这是上述问题的解决方案

以上是关于创建反应应用程序错误:internal/modules/cjs/loader.js:311,当使用 npx 创建反应应用程序时的主要内容,如果未能解决你的问题,请参考以下文章

创建反应应用程序时出现错误

使用 browserify 创建反应应用程序有错误

我在创建反应应用程序时遇到这样的错误

npm 错误:通过 CLI 构建创建反应应用程序时找不到模块'.../immer.js'

创建反应应用程序:npm 错误!在“....”附近解析时 JSON 输入意外结束

使用 fetch API 的 CORS 错误 - 反应创建应用程序