0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Reactの環境構築でcreate-react-appがうまくいかなかったのでViteを使って環境構築

Posted at

やりたかったこと

「React使ってみよ~」と思って、調べてみたらnpx create-react-app react_appを実行したらめっちゃエラー出てうまくいかんかった
友達に聞いてみたところcreate-react-appはもうメンテされてないらしく、使わないほうがいいとのこと

メンテされてないってことなのに「React 環境構築」って調べても全然その話出てこないなーと思ったので、備忘録的に残しておく

お世話になったサイト

node.jsをインストール

インストーラからインストール

コマンドはよく知らんです

ちゃんとインストールできてたらコマンドが効くはず

$ node -v
v22.13.0

# npmも一緒にインストールされてるはず
$ npm -v
10.9.2

プロジェクトを作成

npm create vite@latest
  1. 実行するとプロジェクト名を聞かれるので入力

    image.png

  2. Reactを使いたいので選択

    image.png

  3. 使う言語を選択

    SWCを使ったほうが早い(らしい)

    ↓参考
    https://qiita.com/KokiSakano/items/563e99734850bb5b5723
    image.png

  4. 表示されたコマンド実行する

    image.png

    cd vite-project
    npm install
    npm run dev
    
  5. 実行完了

    image.png

実行したいときはプロジェクトのディレクトリで npm run dev を実行する

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?