Follow the official website vite startup steps
$ npm init vite@latest
$ npm run dev
then got the error
Error: Cannot find module 'worker_threads'
Vite requires Node.js version >= 12.0.0.
Check my own Node version
$ node -v
v10.16.0
So you can upgrade the Node version, here use nvm to manage the Node version
# View available versions
$ nvm ls-remote
# Install the latest version 12
$ nvm install 12.22.6
# Switch to the latest version
$ nvm alias default 12.22.6
$ node -v
v12.22.6