- Meteor is an JavaScript application platform for developing application.
- Meteor provides reactive rendering and single code base.
- In this demo,”We will learn to install Meteor and create a simple application in Windows platform”.
- You can download the Meteor EXE installer from the Meteor home page.The following screenshot shows the Meteor installation in progress.
- Following screenshot shows a form to create Meteor user account.This account will help us to deploy in Meteor cloud.
- We can create Meteor application using meteor create HelloMeteorDemo command.The following screenshot shows the Node terminal for creating a Meteor application.
- Now we can change the current working directory to the HelloMeteorDemo using cd HelloMeteorDemo command.The following screenshot shows the terminal for changing current directory to the project folder.
- The generated project structure looks like following screenshot.The .meteor directory is for identifying a Meteor type application.
- Now We can run the HelloMeteorDemo application using meteor command.The following screenshot shows the terminal with meteor application in execution.
- We can view the application in port number 3000.The following screenshot shows the output of the application in chrome browser.
- The demo code can be downloaded from the following link:-
https://github.com/saan1984/HelloMeteorDemo