Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check on which NextJs version is the project based

I am working on a NextJs project and I would like to know which NextJs version is installed. Where can I check that?

like image 762
Denis2310 Avatar asked Sep 06 '25 03:09

Denis2310


2 Answers

You can view package.json of your project. Or You can use Next.js CLI In your project root directory enter command npx next --version.


enter image description here

like image 153
MarioG8 Avatar answered Sep 07 '25 22:09

MarioG8


In the root directory of the project run

npx next -v

Hope this useful for you!

like image 45
possumm Avatar answered Sep 07 '25 22:09

possumm