Installing Ionic & Node Platfrom

1. Install Node.js

You must have Node.js installed on your system to begin building our app. Please follow the following step if nodejs is not installed on your system. If already done, you can skip this step

Note: Install Node.js version 8 or above on your system.

Download the Node.js as per your operating system from https://nodejs.org/en/download/ To ensure that you have correct version of nodejs installed, from the command line issue the following command

node -v

If you see the string containing version number greater than 8, you are good to go. If you get command not found error, that means node.js is not properly installed on your system. You’ll need to troubleshoot the problem.

2. Install ionic and cordova

In order to build our app you need to have installed ionic and cordova on your system. To install these packages issue the following command from command line:

 npm install -g ionic  cordova

This will install the ionic and cordova programs on your system. To ensure that you have successfully installed both the programs, issue following command from the command line

 ionic -v && cordova -v

If version number gets printed on the console, you are good to go. If you get command not found error, that means that these programs didn’t get properly installed on your system. You’ll need to troubleshoot the problem.

3.Android Studio

You will need to have Android Studio installed on your PC to generate or run ionic apps. Though you won't need to use it. Download it from https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwj0ptmBxL3fAhUYJCsKHUZZDhQYABAAGgJzZg&ohost=www.google.com&cid=CAESQOD2ggAO4Nm9a1P5DbovIEIvmJBjc13cXeflNjb45pFh8ic_N04Lst71Y_JHVBkuWRln_3oo0R0XLC_qgAPg7Fc&sig=AOD64_01SLhqoC0RcT3rSFaFyfNi5p9TMg&q=&ved=2ahUKEwipzNKBxL3fAhXRTn0KHQnyDBIQ0Qx6BAgLEAE&adurl=https://developer.android.com/studio/

https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwj0ptmBxL3fAhUYJCsKHUZZDhQYABAAGgJzZg&ohost=www.google.com&cid=CAESQOD2ggAO4Nm9a1P5DbovIEIvmJBjc13cXeflNjb45pFh8ic_N04Lst71Y_JHVBkuWRln_3oo0R0XLC_qgAPg7Fc&sig=AOD64_01SLhqoC0RcT3rSFaFyfNi5p9TMg&q=&ved=2ahUKEwipzNKBxL3fAhXRTn0KHQnyDBIQ0Qx6BAgLEAE&adurl=

Last updated