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