3

Let's say I just joined a new team. How can I quickly check the version of Nuxt the application is running?

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

2 Answers2

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