0
0

練習用のReact環境構築してみる

Last updated at Posted at 2024-07-23

・node.jsがインストールされているか確認

node -v

・下記だとnode_module、package.jsonなどしか作成されない

npm install react react-dom

・下記だとsrcディレクトリなども作成される

npx create-react-app react_app

・Viteで作成

npm create vite@latest react_app -- --template react

・ViteでTypeScriptファイルを使って作成

npm create vite@latest react_app -- --template react-ts
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0