Skip to content
Type something to search...
Taxo Theme Documentation

Installation Guide

Taxo requires Node.js 22.12.0 or later. That version comes from the theme’s package.json, so matching it helps avoid setup and build issues.

Install Node.js

  1. Download Node.js from nodejs.org.
  2. Install it with the default setup.
  3. Verify the version:
Terminal window
node -v

You should see v22.12.0 or newer.

Install Dependencies

Inside the taxo/ project folder, run:

Terminal window
npm install

Start Development

Terminal window
npm run dev

Taxo’s dev script also starts the TOML watcher. That means changes in src/config/config.toml regenerate .astro/config.generated.json automatically.

Run Quality Checks

Terminal window
npm run astro-check

Create A Production Build

Terminal window
npm run build

That sequence:

  1. regenerates config from TOML
  2. builds the Astro site
  3. removes draft pages from the sitemap

Useful Extra Scripts

Terminal window
npm run generate-favicons
npm run generate-multilingual-content
npm run remove-multilingual
npm run test
  • generate-favicons rebuilds favicon assets from your source logo.
  • generate-multilingual-content helps create translated content folders.
  • remove-multilingual strips multilingual support from the project when you want a single-language site.
  • test runs the Jest test suite.