Nightly Channel
Try the latest Nitro changes before they are released, with builds published automatically for every commit to the main branch.
You can opt in to the nightly release channel by updating your package.json:
{
"devDependencies": {
"nitro": "npm:nitro-nightly@latest"
}
}
Remove the lockfile (package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lock, or bun.lockb) and reinstall the dependencies.
When using Bun as package manager in a mono-repo, you need to make sure nitro package is properly hoisted.
bunfig.toml
[install]
publicHoistPattern = ["nitro*"]
Avoid using
<npm|pnpm|yarn|bun|deno> install nitro-nightly; it does not install correctly.
If you encounter issues, delete your node_modules and lock files, then follow the steps above.Migrating from Nitro v2 at the same time? See the migration guide.