This website is built using Docusaurus, a modern static website generator.
- Node.js version 18.0 or above (which can be checked by running
node -v
). You can use nvm for managing multiple Node versions on a single machine installed.- When installing Node.js, you are recommended to check all checkboxes related to dependencies.
npm install
npx docusaurus start
npm run start
- Use npx docusaurus start:
- For quick tests or temporary runs without installing the Docusaurus CLI.
- If you want to use the latest version of Docusaurus globally.
- Use npm run start:
- For consistent and reproducible builds, ensuring you use the local version of Docusaurus.
- In your development workflow, where the start script is part of your project setup.