Meteor Svelte installation & configuration using nodejs


As of 1st Jan 2023, Meteor requires node version 14.x
Most of us use the latest node version.
So to use meteor we have to install node version 14 whole keeping the latest version of nodejs
node --version nvm listTo check how many node versions are available on the system nvm install 14.0.0 nvm listThis time there will be 2 available version nvm use 14.0.0 npm install -g [email protected] npm install -g meteor meteor create --svelte --tailwind .meteoror, to run the application with a specific port, run
meteor --port 8080