Skip to main content

Setting Up a React Environment on Windows 11

·66 words
icysamon
Author
icysamon
I really love making things by hand and turning my ideas into reality.

Install Next.js using the link below.

https://nextjs.org/docs/app/getting-started/installation

Download the Tic-Tac-Toe demo using the link below. Detailed instructions are available on the website.

https://ja.react.dev/learn/tutorial-tic-tac-toe

Unzip the downloaded archive, open a terminal, and navigate to the extracted directory.

Run the following code to grant permissions.

Set-ExecutionPolicy RemoteSigned -Scope Process

Install the dependency libraries.

npm install

Start the local server.

npm start

Enter real-time developer mode.

npm run dev