「Javascript/react/プロジェクト作成」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==プロジェクト作成== 以下をコンソールから実行する <pre> $ npx create-react-app helloworld $ cd helloworld </pre>」) |
(→プロジェクト作成) |
||
行3: | 行3: | ||
<pre> | <pre> | ||
$ npx create-react-app helloworld | $ npx create-react-app helloworld | ||
− | + | </pre> | |
+ | |||
+ | ===確認=== | ||
+ | helloworld直下に以下が作成されてることを確認 | ||
+ | <pre> | ||
+ | README.md | ||
+ | node_modules | ||
+ | package-lock.json | ||
+ | package.json | ||
+ | public | ||
+ | src | ||
</pre> | </pre> |
2024年6月4日 (火) 04:38時点における版
プロジェクト作成
以下をコンソールから実行する
$ npx create-react-app helloworld
確認
helloworld直下に以下が作成されてることを確認
README.md node_modules package-lock.json package.json public src