Getting Started β
Note
All the following content assumes that the source code has been downloaded and you have entered the ./web directory in the command line.
Development Environment β
Install Node.js and pnpm locally in order. Other package managers like yarn can also be used, but pnpm is recommended. The documentation is based on pnpm.
- Node.js >= 20.0.0, LTS version 20.x.x is recommended
- PNPM >= 9.0.0
Install Dependencies and Run β
After successful execution, the page will open automatically at the default address http://localhost:2888
# Install dependencies
pnpm i or pnpm install
# Run
pnpm dev2
3
4
5
Dependency Installation Error
If dependencies cannot be installed properly, it may be because the default npm registry is inaccessible. You can try executing pnpm config set registry https://registry.npmmirror.com/ to switch to the domestic npmmirror mirror registry (or use nrm for one-click registry switching), then delete the /node_modules folder in the root directory and reinstall dependencies.