827 B
827 B
Welcome!
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:
-
macOS:
brew install node@20
-
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 youryarn install
will fail.$ yarn --version 1.22.21
That's it. Enjoy coding!