私は新しい反応があります。最初はcreate-react-app
を使い始めました。ファイル名はデフォルトでindex.js
でした。その後、ファイルの名前をindex.jsx
に変更しました。jsxへのReact File命名規則
npm start
を使用してアプリケーションを起動しようとすると、以下のエラーが発生します。
> react-scripts start
Could not find a required file.
Name: index.js
Searched in: D:\WorkSpace\React\chat\src
npm ERR! Windows_NT 6.1.7601
npm ERR! argv "D:\\Applns\\nodejs\\node.exe" "D:\\Applns\\nodejs\\node_modules\\
npm\\bin\\npm-cli.js" "start"
npm ERR! node v6.10.0
npm ERR! npm v3.10.10
npm ERR! code ELIFECYCLE
npm ERR! [email protected] start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] start script 'react-scripts start'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the chat package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
これを解決する方法。 jsxファイルを取得するノードを作成するにはどうすればよいですか。
ReactJSコンポーネントを.jsxのファイルに右にする必要がありますか?標準として? –
それは要件ではありませんが、一部の人々はそれを好む。他の人は、 'jsx'変換は、ブラウザ上で実行可能な有効なjavascriptにするためにファイル上で起こる変換のうちの1つに過ぎないので、ファイルの名前を変更するのは意味がありません。私は個人的にどちらの方法でも強い感情を持っていませんが、通常は '.js'ファイルだけで済むので、' jsx'構文を追加する必要がある場合は後で変更する必要はありません。 –