Install Meteor
Installing Meteor is the first step because Meteor will install Node.js and Mongo DB for you on your local machine.
Run Meteor Install Command
Open Terminal and run this command to install the latest version of Meteor
curl https://install.meteor.com/ | shCreate a new Meteor app with any name, replace my-new-app with the name of your app
meteor create my-new-appOr add the --vue command to create a Meteor app with Vue packages (saves some time on future steps)
Last updated
Was this helpful?