web/docs/new.md
If you're new to web stuff or coming back to it after mobile/backend development, here is a recommended workflow:
Install VS Code.
Install the Prettier and ESLint extensions.
Enable the VS Code setting to format on save.
Install node on your machine. There are myriad ways to do this, here are some examples:
OS agnostic: Install NVM, then
nvm install 22 && corepack enable.
macOS: brew install node@22
Ubuntu: sudo apt install nodejs npm && sudo npm i -g corepack
Enable corepack. This allows us to use the correct version of our package manager (Yarn):
corepack enable
If now you run yarn --version in the web directory, you should be seeing a
1.22.xx version, otherwise your yarn install will fail.
$ yarn --version
1.22.22
Install Rust.
That's it. Enjoy coding!