Don't install v25.15.5, it's a broken version of titan
The Titan CLI command is now titan.
The previous tit command is still supported as a legacy alias.
titan planet

Updates

How to update the Titan CLI and your project to the latest version.

Update to the latest version

Keeping Titan up to date involves two simple steps:

Update the global Titan CLI to the latest version:

npm install -g @ezetgalaxy/titan@latest

This ensures you are using the newest commands, bundlers, and tooling.

Inside your Titan project directory, run:

titan update

The titan update command will:

  • Update internal Titan files
  • Add newly introduced features
  • Apply required migrations automatically
  • Keep your existing app code intact

You do not need to recreate your project.

When should you run titan update?

  • After installing a new Titan CLI version
  • When new framework features are released
  • If the docs mention an update step

Tip
Always update the CLI first, then run titan update inside your project.

On this page