npm run dev Error:Cannot find module ‘node:url‘

vue3 + vite reports an error when starting the project: Error: Cannot find module 'node:url'

Insert image description here

Reason for error:

The node version is too low and needs to be upgraded to version 14.18+ / 16+ (https://cn.vitejs.dev/guide/migration-from-v2.html#node-support)
Insert image description here

solve:

Insert image description here

1. Install the n module sudo npm install -gn
2. Upgrade to the specified version sudo n 14.18.0
3. Check the version with node -v

Guess you like

Origin blog.csdn.net/weixin_44216637/article/details/129200940