This repository uses nvm to manage the node version. If you don't have nvm installed, you can install it by following the instructions on the official website.
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash![Note] Please use the WSL preferably to use the official nvm and avoid any issues.
You can also install nvm directly on Windows. You can download the installer from the nvm-windows repository.
After installing nvm, you can install node by running the following command:
nvm install --ltsCheck the node version by running the following command:
node --versionif necessary you can change the node version by running the following command:
nvm use --ltsIt should be at least v20.0.0.
This repository uses yarn as the package manager. You can use corepack to install yarn. It will automatically
install yarn and use the correct version of yarn for the project.
Warning
Please reload your terminal before running the following command.
corepack enableBefore running the development server, you need to install the dependencies.
yarnyarn run devOpen http://localhost:8080 in your browser.
yarn run testLicensed under the MIT license.