-
Notifications
You must be signed in to change notification settings - Fork 0
FAQ
Madita Antonia Plogsties edited this page May 13, 2025
·
16 revisions
- You will need git.
- You will need Node & npm.
- We use corepack for yarn, so run
corepack enablein your command line - In the root directory of the project run
yarn installoryarnfor short in your command line. This will download all used packages of the project.
After you have installed all components (see previous section), you only have to execute:
yarn run startThis will spin up a local server presenting the webpage.
Debugging features such as breakpoints, data inspection and stepping through code are built into VSCode and can be enabled as follows.
- Add the following configuration to
.vscode/launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug React App",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/src"
}
]
}- Start the local server
yarn run start- Start debugging by pressing
F5in VSCode.
No. The Rust code is compiled to a wasm package. These compiled packages are in the git repository so when you clone/pull from the repository, you already have the compiled code. These wasm packages can be executed in your browser so you do not have to install something for it