を私が反応するように新たなんだと私は基本的なリアクトアプリを構築するために、この説明を使用:React.js:作成反応するアプリ
npm install -g create-react-app
create-react-app my-app
cd my-app
npm start
:https://facebook.github.io/react/docs/installation.html
は私がして、新しいプロジェクトを開きましたindex.htmlファイルは、ハローワールド/パブリックに位置しており、ここでの内容です:
しかし<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<title>React App</title>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root">
</div>
</body>
</html>
、すべての「ものに反応」こんにちは世界\ srcディレクトリに置かれています。 'hello-world \ src \ index.js'はコンポーネントをアクティブにします。
私が理解できないのは、index.htmlがindex.jsの内容を「読み込む」方法です。 index.htmlには、index.jsにつながるHTMLタグはありません。
"npm start"を実行することでこのアプリケーションを開始できます。このコマンドが実行するのは、localhost:3000で実行されているサーバーを呼び出すことです。 「npm start」を使わずにアプリケーションを見るにはどうすればいいですか?
それは反応が '
'の間にあるためです。 – Zorig私はそれをアンダー。私が望むのは、index.htmlをダブルクリックし、アプリケーション全体を見ることです( 'npm start'を使ってサーバを設定することなく)。 – CrazySynthax
あなたは 'dist /'フォルダの中にいますか? – Zorig