Category Archives: MeteorJs Tutorial
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
- 2. Run Application
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-
Meteor Installation
Meteor Installation It is very simple to install meteor on Windows and Linux environment. Here in this tutorial, we are going to explain the steps to install the meteor on Windows and Linux. Meteor needs NodeJs so before installing make sure it is installed.
Meteor Installation on Windows | Linux | Ubuntu
First install NodeJS on your system, if NodeJS is not installed follow the steps to install on windows – NodeJS Install Steps on Windows. Steps to install NodeJs on Linux/Ubuntu Install Node on Ubuntu.
Install Meteor On Windows
To install Meteor on windows download installer from – Download Installer and run it.
Install Meteor On Linux | Ubuntu
Run the following command on terminal to install the Meteor on Windows.
Meteor Installation Command Ubuntu:
curl https://install.meteor.com/ | sh |
After Running the above command it will install the meteor on Linux/Ubuntu Environment.
MeteorJS Tutorial
MeteorJS Tutorial MeterorJs is basically JavaScript Framework which is used to create modern web and mobile applications. It enables us to create fully responsive & cross platform applications. Meteor allows you develop the application in one language ie. JavaScript and use it everywhere. Here in this tutorial, we are going to cover all the important topics in MeteorJs.
MeteorJS Tutorial | Learn Step By Step With Examples
Learn MeteorJS with our step by step tutorial & simple examples.
Audience
This tutorial is made for the developers who are willing to learn the MeteorJS framework with example and demo.
What You Should Know?
Before Starting you might be aware of HTML and JavaScript.