Tutorialsplane

Meteor First App


Meteor First App It is very simple to create first application in MeteorJs. Here in this tutorial, we are going to explain how you can create your first application in Meteor using command line.


Meteor First Application Example

You just need to follow the steps provided –

1. Create Application

Run the below command to create your first meteor Application.

Create First Application Example:

meteor create meteorApp

2. Run Application

After the above command run the below command to run the Application. Note Makesure you are in meteorApp folder.

Run Meteor Application Example:

meteor

Once you run the above command the output will be something like this –

Now to verify the result visit – http://localhost:3000/. This will look something like this-

MeteorJS Tutorial