Skip to content

Latest commit

 

History

History
 
 

site

Website

This website is built using Docusaurus, a modern static website generator.

Local Development

Requirements {#requirements}

  • 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.

Install

npm install

Run locally

NPX

npx docusaurus start

NPM

npm run start

When to Use Which?

  • 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.