just untar into ~/opt
then symlink, ie
cd ~/opt
ln -s node-v22.17.1-linux-x64 node
and add path to your ~/.bashrc
echo 'export PATH=$PATH:~/opt/node/bin' >> ~/.bashrc
to create a react app
npm create vite@latest test-app -- --template react-ts
to debug then
cd test-app
npm i
code .
from terminal of vscode
npm run dev
from vscode run/debug create a launch.json file
and select WebApp (Chrome)
then Chrome (Launch)
a file like following will be created
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome",
"request": "launch",
"type": "chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
edit the url to the one as npm run dev
reports, ie
"url": "http://localhost:5173",
now hit F5 to attach the debugger
go to the App.tsx
and place a breakpoint (F9) to the button onclick
example | descr |
---|---|
test-app | basic skeleton spa |