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


82

我开始玩Create React App,但我不明白内如何index.js加载index.html。这是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。连接在哪里?我想念什么?


您如何提供您的内容?
尼克拉斯·普瓦伊·温格

我没有更改任何默认值,我只是这样做:create-react-app my-app我使用webstorm打开项目,然后执行npm start,但是我的问题是index.html如何知道必须加载index.js?写在哪里?
Piero

6
webpack.github.io/docs/webpack-dev-server.html Webpack-dev-server在开发中会为您处理此问题。
Nicklas Pouey-Winger

@NicklasWinger在哪里可以找到配置文件以了解该机制?
Piero

4
您可以运行npm run eject以手动控制配置。我建议从头开始进行更基本的设置以完全了解发生了什么:)
Nicklas Pouey-Winger

Answers:


112

在后台,Create React App使用带html-webpack-plugin的Webpack

我们的配置指定Webpacksrc/index.js用作“入口点”。因此,这是它读取的第一个模块,然后是其他模块,将它们编译为一个捆绑包。

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

我们已启用html-webpack-plugin生成HTML文件。在我们的配置中,我们指定应将其public/index.html作为模板阅读。我们还将inject 选项设置为true。使用该选项,html-webpack-plugin<script>带有Webpack提供的路径的a添加到最终HTML页面中。这最后一个页面是一个你在得到build/index.html运行后npm run build,这会从服务的一个/运行时npm start

希望这可以帮助!Create React App的优点在于您实际上不需要考虑它。


还有一个问题,您通常将哪个IDE用于react或js?我在Atom和Webstorm之间进行了选择,您认为呢?
Piero

1
我正在使用Webstorm,到目前为止,我对此非常满意。
Lancelot

2
您如何解析多个路径来加载不同的HTML页面?
quantumpotato

3
实际上@Dan Abramov是个天才:D,但是当他说“您实际上不需要考虑这一点”时,我不同意他的看法,因为每个人都应该从下至上理解事情。
Seif Eddine Slimene

希望这在这里以外的其他地方有记录吗?在CRA文档中?我们不需要知道实现,但是我们确实需要知道一切都始于index.js以及它如何破坏public / index.html谢谢大家!
Ashley Aitken
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.