Turgut
Turgut

Reputation: 819

Syntax error while running vite create with npm

I'm trying to create a react project using vite but I'm getting an error while running npm create vite@latest I'm on a fresh new ubuntu, I've just created a directory, opened a terminal inside that directory then ran sudo apt install npm followed by npm create vite@latest but I'm getting this error:

enter image description here

What am I doing wrong? Since my setup is new have I forgotten to install something?

Upvotes: 1

Views: 2654

Answers (1)

tony19
tony19

Reputation: 138616

You're using a version of Node that vite@latest (currently Vite 3.x) no longer supports. Vite 3 requires Node 14.18 or newer:

Node.js Support

Vite no longer supports Node.js 12 / 13 / 15, which reached its EOL. Node.js 14.18+ / 16+ is now required.

The solution is to install one of the supported Node versions on your machine, and retry the npm create vite@latest command afterward.

Upvotes: 3

Related Questions