2022-10-06 09:15:30 +00:00
---
2023-10-18 10:59:43 +00:00
title: Upgrade Guide
2023-10-25 00:36:04 +00:00
description: 'Learn how to upgrade to the latest Nuxt version.'
2023-10-18 10:59:43 +00:00
navigation.icon: i-ph-arrow-circle-up-duotone
2022-10-06 09:15:30 +00:00
---
2022-09-22 15:24:32 +00:00
2023-10-18 10:59:43 +00:00
## Upgrading Nuxt 3
### Latest release
To upgrade Nuxt 3 to the [latest release ](https://github.com/nuxt/nuxt/releases ), use the `nuxi upgrade` command.
```bash [Terminal]
npx nuxi upgrade
```
2022-09-22 15:24:32 +00:00
2023-10-18 10:59:43 +00:00
### Nightly Release Channel
To use the latest Nuxt 3 build and test features before their release, read about the [nightly release channel ](/docs/guide/going-further/nightly-release-channel ) guide.
## Nuxt 2 vs Nuxt 3
2022-09-22 15:24:32 +00:00
In the table below, there is a quick comparison between 3 versions of Nuxt:
Feature / Version | Nuxt 2 | Nuxt Bridge | Nuxt 3
-------------------------|-----------------|------------------|---------
Vue | 2 | 2 | 3
2022-11-16 18:58:44 +00:00
Stability | 😊 Stable | 😌 Semi-stable | 😊 Stable
2022-09-22 15:24:32 +00:00
Performance | 🏎 Fast | ✈️ Faster | 🚀 Fastest
Nitro Engine | ❌ | ✅ | ✅
ESM support | 🌙 Partial | 👍 Better | ✅
TypeScript | ☑️ Opt-in | 🚧 Partial | ✅
Composition API | ❌ | 🚧 Partial | ✅
Options API | ✅ | ✅ | ✅
Components Auto Import | ✅ | ✅ | ✅
`<script setup>` syntax | ❌ | 🚧 Partial | ✅
Auto Imports | ❌ | ✅ | ✅
2022-11-16 10:04:28 +00:00
webpack | 4 | 4 | 5
2022-09-22 15:24:32 +00:00
Vite | ⚠️ Partial | 🚧 Partial | ✅
Nuxi CLI | ❌ Old | ✅ nuxi | ✅ nuxi
Static sites | ✅ | ✅ | ✅
## Nuxt 2 to Nuxt 3
The migration guide provides a step-by-step comparison of Nuxt 2 features to Nuxt 3 features and guidance to adapt your current application.
2023-10-18 10:59:43 +00:00
::read-more{to="/docs/migration/overview"}
Check out the **guide to migrating from Nuxt 2 to Nuxt 3** .
2022-09-22 15:24:32 +00:00
::
## Nuxt 2 to Nuxt Bridge
If you prefer to progressively migrate your Nuxt 2 application to Nuxt 3, you can use Nuxt Bridge. Nuxt Bridge is a compatibility layer that allows you to use Nuxt 3 features in Nuxt 2 with an opt-in mechanism.
2023-10-18 10:59:43 +00:00
::read-more{to="/docs/bridge/overview"}
**Migrate from Nuxt 2 to Nuxt Bridge**
2022-09-22 15:24:32 +00:00
::