1. Install VSCode

2. Use AI features with Copilot for free, Set up Copilot (login to GitHub)

3. Create a folder for your app using explorer in VSCode (such as testapp2, Node.js package names must be all lowercase)

4. Install Node.js (restart VSCode)

5. Open terminal in VSCode

6. VSCode terminal: Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned

7. npm -v (should now show the version of npm package manager)

8. npm create vite@latest . --template react

8a. Choose react

8b. JavaScript

8c. No experimental option

8d. Install with npm and start now? Yes

9. Test: http://localhost:5173/

10. If you close the terminal the localhost will stop. Start it again with: npm run dev