タイトル : create-react-appしてみよう(2023/09)
更新日 : 2023-09-24
カテゴリ : プログラミング
create-react-appしてみよう
Reactの勉強をやり直そうかなと思って、まずはcreate-react-appしてみる。
$ npm install -g create-react-app
$ npx create-react-app test1 --template typescript
$ cd test1
$ npm start
ポート 3000 開けてなかった
sudo ufw status
sudo ufw allow 3000
sudo ufw reload
sudo ufw status