My personal website.
Use Node.js by matching the version in .nvmrc at the repo root. That value should track the latest Current (stable, non-LTS) release from nodejs.org—edit .nvmrc when you bump Node. With nvm:
nvm install # installs the version listed in .nvmrc
nvm use # selects it in this shellYou’ll also need Bun installed. Then run bun run start:dev to start the project locally.
Use bun run lint to run Biome (format check + lint) on the project. Use bun run format to apply Biome's formatter. The same checks run on pre-push; your editor can surface issues per file with the Biome extension.