[Vuejs]-Nuxt.js localhost:3000 not running

0👍

Since the v5, a Node v14 version is required: https://github.com/nuxt/create-nuxt-app/releases/tag/v5.0.0

So you can either try that. It works on my side with the latest LTS: Node v16.


Or fallback into using the v4 of the CLI.
That version runs perfectly for ages already

npx create-nuxt-app my-cool-app

and is well battle-tested!

PS: I’ve opened this issue btw: https://github.com/nuxt/create-nuxt-app/issues/1014

Leave a comment