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@latestThis ensures you are using the newest commands, bundlers, and tooling.
Inside your Titan project directory, run:
titan updateThe 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 runtitan updateinside your project.