在 Create-React-App 应用程序中,index.html 和 index.js之间的连接在哪里?

2022-08-30 04:57:07

我开始玩Create React App,但我无法理解里面是如何加载的。这是 html 代码:index.jsindex.html

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
    <!--
      Notice the use of %PUBLIC_URL% in the tag above.
      It will be replaced with the URL of the `public` folder during the build.
      Only files inside the `public` folder can be referenced from the HTML.

      Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
      work correctly both with client-side routing and a non-root public URL.
      Learn how to configure a non-root public URL by running `npm run build`.
    -->
    <title>React App</title>
  </head>
  <body>
    <div id="root"></div>
    <!--
      This HTML file is a template.
      If you open it directly in the browser, you will see an empty page.

      You can add webfonts, meta tags, or analytics to this file.
      The build step will place the bundled scripts into the <body> tag.

      To begin the development, run `npm start`.
      To create a production bundle, use `npm run build`.
    -->
  </body>
</html>

但我在任何地方都看不到导入.连接在哪里?我错过了什么?index.js


答案 1

在引擎盖下,Create React App使用Webpack和html-webpack-plugin

我们的配置指定 Webpack 用作“入口点”。所以这是它读取的第一个模块,它从它到其他模块,将它们编译成一个包。src/index.js

当 webpack 编译资产时,它会生成单个(如果使用代码拆分,则生成多个)捆绑包。它使它们的最终路径可供所有插件使用。我们正在使用一个这样的插件将脚本注入HTML。

我们已经启用了html-webpack-plugin来生成HTML文件。在我们的配置中,我们指定它应该作为模板读取。我们还将选项设置为 。使用该选项,将带有 Webpack 提供的路径的 a 直接添加到最终的 HTML 页面中。这最后一页是您在运行后进入的页面,也是您在运行 时提供的页面。public/index.htmlinjecttruehtml-webpack-plugin<script>build/index.htmlnpm run build/npm start

希望这有帮助!Create React App的美妙之处在于你实际上不需要考虑它。


答案 2