Let's say I just joined a new team. How can I quickly check the version of Nuxt the application is running?
Asked
Active
Viewed 2,829 times
2 Answers
4
Or simply via command line in the directory where your package.json is located:
yarn: yarn list | grep @nuxt/core
npm: npm ls | grep @nuxt/core
If you run npx nuxt dev
or yarn nuxt dev
it also shows the current version.

Mario
- 81
- 3
2
Looks like I just had to open the package.json
file and check the version for the @nuxt/core
package.

Julien Le Coupanec
- 7,742
- 9
- 53
- 67